summaryrefslogtreecommitdiffstats
path: root/application
AgeCommit message (Collapse)AuthorFilesLines
2012-07-05Rename the 'interbase' DB driver to 'ibase' in order to match PHP's function ↵Andrey Andreev1-2/+3
prefix
2012-07-03replaced double quotes with single in $config['cookie_... string valuesDumk01-3/+3
2012-06-26Revert default config value of db pconnect to TRUE (issue #793)Andrey Andreev1-2/+2
2012-06-19fixing a typo in the comments of the migration config fileRobert Doucette1-1/+1
2012-06-15mimes.php: zip, rar, php from pull #1472Andrey Andreev1-2/+3
2012-06-15Merge branch 'develop' of github.com:EllisLab/CodeIgniter into developPhil Sturgeon3-11/+12
2012-06-15Merge branch 'feature/minify_output' of ↵Phil Sturgeon1-0/+13
https://github.com/atiredmachine/CodeIgniter into develop
2012-06-14Polish changes from pull #1233 - Session class already has the ↵Andrey Andreev1-3/+3
time_reference setting - 'GMT' is a valid timezone, so nothing needs to be changed in order to work properly (upgrade notes) - Altered some description text
2012-06-13Fixed some stuff in documentation.Iban Eguia1-3/+4
2012-06-12Changed the config parameter. The session's _get_time() function has also ↵Iban Eguia1-2/+2
changed.
2012-06-10Changed the default timezone to local and explained in the config file.Iban Eguia1-2/+3
2012-06-08Merge remote-tracking branch 'upstream/develop' into new_dateIban Eguia11-261/+277
2012-06-07Add ics files support to mimes.php (issue #1441)Andrey Andreev1-1/+2
2012-06-06Added Fennec as Firefox Mobile to config/user_agents.php (issue #1063)Andrey Andreev1-3/+3
2012-06-04Direct return from mimes config, instead of using global $mimes;Phil Sturgeon1-130/+130
Global variables are generally a terrible idea, especially for something as simple as this. The mimes.php now returns an array instead of just injecting a variable name into the global namespace.
2012-06-02Replaced `==` with `===` in /application/views/welcome_message.phpAlex Bilbie1-1/+1
2012-05-21Merge branch 'develop' of git://github.com/EllisLab/CodeIgniter into errorsTimothy Warren1-1/+1
2012-05-17Changed the default controller route to use single quotes instead of double ↵Alex Bilbie1-1/+1
quotes
2012-05-16Merge branch 'develop' of git://github.com/EllisLab/CodeIgniter into errorsTimothy Warren1-1/+4
2012-05-16Merge pull request #1359 from sourcejedi/backtrace-filter-fixAndrey Andreev1-1/+4
fix backtrace filtering
2012-05-16fix backtrace filteringAlan Jenkins1-1/+4
The backtrace was filtered to remove CI system files, but the filter was buggy. It would also filter out application files which happened to contain the string "system"... or ALL files, if the application directory is under /system/ (Perhaps the latter comes as a surprise, but it's explicitly mentioned in index.php and <http://codeigniter.com/wiki/mod_rewrite>). Instead, we should test whether the file is underneath BASEPATH (using realpath() to make sure we have the same sort of slashes).
2012-05-14Move errors to views folderTimothy Warren5-0/+0
2012-05-11Remove a duplicate mobile user agent entryAndrey Andreev1-1/+0
2012-05-11User_agent library improvementsAndrey Andreev1-71/+76
2012-05-05Remove -webkit prefix for box-shadowdixy3-3/+3
2012-04-26Merge branch 'develop' of git://github.com/EllisLab/CodeIgniter into developJamie Rumbelow20-156/+166
Conflicts: system/core/Loader.php system/database/DB_query_builder.php system/database/drivers/cubrid/cubrid_driver.php system/database/drivers/mssql/mssql_driver.php system/database/drivers/mysql/mysql_driver.php system/database/drivers/mysqli/mysqli_driver.php system/database/drivers/oci8/oci8_driver.php system/database/drivers/odbc/odbc_driver.php system/database/drivers/pdo/pdo_driver.php system/database/drivers/postgre/postgre_driver.php system/database/drivers/sqlite/sqlite_driver.php user_guide_src/source/changelog.rst user_guide_src/source/database/query_builder.rst
2012-04-24Added Romanian characters to the foreign_chars.phpGeorge Petsagourakis1-4/+4
fixes #131
2012-04-24Added Greek characters to the foreign_chars.phpGeorge Petsagourakis1-28/+33
2012-04-17minor style fixTimothy Warren1-2/+2
2012-04-17Updated supported database driver listTimothy Warren1-1/+2
2012-04-04Make database config easier to work withTimothy Warren1-17/+19
2012-03-27Fixed typo.Iban Eguia1-1/+1
2012-03-27Changed Date helper to return time() based on the timezone parameter.Iban Eguia1-9/+7
2012-03-26Clear some spaces and fix some inconsistencies in application/ php filesAndrey Andreev19-78/+68
2012-03-26Merge pull request #994 from Razican/doctypesAndrey Andreev1-11/+21
Doctypes
2012-03-18add support for httponly cookiesfreewil1-0/+2
2012-03-09Bumped CodeIgniter's PHP requirement to 5.2.4.Phil Sturgeon20-20/+20
Yes I know PHP 5.4 just came out, and yes I know PHP 5.3 has lovely features, but there are plenty of corporate systems running on CodeIgniter and PHP 5.3 still is not widely supported enough. CodeIgniter is great for distributed applications, and this is the highest we can reasonably go without breaking support. PHP 5.3 will most likely happen in another year or so. Fingers crossed on that one anyway...
2012-03-06Merge branch 'develop' of git://github.com/EllisLab/CodeIgniter into developJamie Rumbelow1-3/+3
Conflicts: system/database/DB_driver.php system/database/DB_query_builder.php
2012-02-29updated branchMichiel Vugteveen1-2/+2
2012-02-29docx and xlsx was already fixesMichiel Vugteveen1-2/+2
2012-02-29Merged in 2.1-stable changes.Phil Sturgeon1-2/+2
2012-02-28mime types doc, docx, xlsx fixesMichiel Vugteveen1-3/+3
2012-02-19Renaming Active Record to Query Builder across the systemJamie Rumbelow1-4/+4
2012-02-09Added database.phpTaufan Aditya1-0/+2
2012-01-27Added doccumentation for the new doctypes.Iban Eguia1-1/+1
2012-01-27Added some more doctypes. Fixes #952.Iban Eguia1-11/+21
2012-01-25Rudimentary minifying of output.Thor (atiredmachine)1-0/+13
2012-01-08Merge pull request #850 from RS71/developPhil Sturgeon1-0/+2
CSRF optional token regeneration
2012-01-04Updated the memcached config file.Eric Barnes1-7/+31
2012-01-04Merge pull request #668 from GustavBertram/developEric Barnes1-0/+22
Added a proper default config file for Cache_memcached - GWB