summaryrefslogtreecommitdiffstats
path: root/system
AgeCommit message (Collapse)AuthorFilesLines
2012-06-05Added get_mimes() function to system/core/Commons.php.The MIMEs array from ↵Andrey Andreev6-153/+60
config/mimes.php is used by multiple core classes, libraries and helpers and each of them has implemented an own way of getting it, which is not needed and is hard to maintain. This also fixes issue #1411
2012-06-04Merge branch 'develop' of github.com:EllisLab/CodeIgniter into developPhil Sturgeon2-22/+18
2012-06-04Direct return from mimes config, instead of using global $mimes;Phil Sturgeon4-13/+9
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-04Merge pull request #1403 from cryode/bug/cache_backupPhil Sturgeon1-21/+17
Fix issue where cache backup is ignored on first call.
2012-06-04Merge pull request #1420 from IT-Can/fix-issue-1419Andrey Andreev1-1/+1
Fix issues #1397, #1419
2012-06-04Loader was too specific about === "", some cases were NULL.Phil Sturgeon1-1/+1
Signed-off-by: Phil Sturgeon <email@philsturgeon.co.uk>
2012-06-04Fix issue #1423Andrey Andreev1-2/+2
2012-06-04Alter SQLite3's version() method and clear some spacesAndrey Andreev2-2/+2
2012-06-04Fix an SQLite3 pconnect() bug + other minor changesAndrey Andreev3-5/+5
2012-06-04Revert/optimize some changes from 773ccc318f2769c9b7579630569b5d8ba47b114b ↵Andrey Andreev7-20/+20
and d261b1e89c3d4d5191036d5a5660ef6764e593a0
2012-06-04Revert/optimize some changes from 48a2baf0e288accd206f5da5031d29076e130792Andrey Andreev9-25/+25
2012-06-04Revert/optimize some changes from ed944a3c70a0bad158cd5a6ca5ce1f2e717aff5dAndrey Andreev9-16/+19
2012-06-03Merge branch 'develop' of github.com:EllisLab/CodeIgniter into developPhil Sturgeon80-575/+579
2012-06-02remove staticMichiel Vugteveen1-1/+1
2012-06-02Fixing final SQLite bug introduced in 48a2baf0e288accd206f5da5031d29076e130792Alex Bilbie1-1/+1
2012-06-02Fix for bug in SQLite introduced in 48a2baf0e288accd206f5da5031d29076e130792Alex Bilbie1-1/+1
2012-06-02Fixing PDO bug introduced in 48a2baf0e288accd206f5da5031d29076e130792Alex Bilbie1-1/+1
2012-06-02Fixed bug in MySQL driver introduced in 48a2baf0e288accd206f5da5031d29076e130792Alex Bilbie1-1/+1
2012-06-02Fixed bug in PostgreSQL introduced in 48a2baf0e288accd206f5da5031d29076e130792Alex Bilbie1-1/+1
2012-06-02Fixed bug introduced in ed944a3c70a0bad158cd5a6ca5ce1f2e717aff5dAlex Bilbie1-1/+1
2012-06-02Don't assume $_ci_path is a string (could be FALSE)Alex Bilbie1-1/+1
2012-06-02Replaced `==` with `===` and `!=` with `!==` in /system/librariesAlex Bilbie24-268/+268
2012-06-02Replaced `==` with `===` and `!=` with `!==` in /system/helpersAlex Bilbie13-68/+68
2012-06-02Replaced `==` with `===` and `!=` with `!==` in /system/databaseAlex Bilbie31-167/+167
2012-06-02Replaced `==` with `===` and `!=` with `!==` in /system/coreAlex Bilbie13-70/+70
2012-05-31Edit to meet CI coding standardsThanasis Polychronakis1-3/+3
2012-05-31Indended code to meet CI standardsThanasis Polychronakis1-2/+6
2012-05-31Load base config first, then environment's configThanasis Polychronakis1-9/+9
2012-05-28Fix issue where cache backup is ignored on first call.Eric Roberts1-21/+17
2012-05-27Merge branch 'develop' of github.com:EllisLab/CodeIgniter into developPhil Sturgeon24-486/+168
2012-05-27Continuation for Security and Table code-coverage, add coverage report to travisTaufan Aditya1-0/+1
2012-05-26Fix issue #862Andrey Andreev2-54/+24
2012-05-26Move count_all() from the drivers to CI_DB_driverAndrey Andreev13-349/+30
2012-05-25Apply fix for issue #136 on PDO+MySQL as wellAndrey Andreev1-3/+3
2012-05-25Fix issue #136 (MySQL escape_like_str())Andrey Andreev2-4/+8
2012-05-24Added update_batch() support for PostgreSQL (issue #356)Andrey Andreev2-2/+43
2012-05-24Fix issue #319Andrey Andreev1-6/+4
2012-05-24Fix issue #121Andrey Andreev3-23/+25
2012-05-24Fix issues #44 & #110Andrey Andreev1-0/+2
2012-05-24Fix issue #1273 and some cleanup in Query BuilderAndrey Andreev1-25/+18
2012-05-24Add backwards compatibility work-around for the configuration settingAndrey Andreev1-0/+7
2012-05-24Remove the DB destructor (db->close())Andrey Andreev2-18/+1
2012-05-24Fix issue #1388Andrey Andreev1-2/+2
2012-05-23Fixed conflicts with 2.1-stable merge.Phil Sturgeon1-6/+6
2012-05-23Merge branch 'develop' of github.com:EllisLab/CodeIgniter into developPhil Sturgeon3-14/+3
2012-05-23Input, Session and Cookie get's will return NULL.Phil Sturgeon3-14/+14
Read more about this change here: http://codeigniter.com/forums/viewthread/215833
2012-05-23Merge pull request #1320 from thallisphp/patch-2Phil Sturgeon1-1/+1
Update system/libraries/Cart.php - To enable integrity when using associative arrays
2012-05-23Merge pull request #1367 from PawelDecowski/developPhil Sturgeon1-11/+0
Remove set_time_limit() call. Fixes #1346
2012-05-23Merge pull request #1357 from timw4mail/errorsPhil Sturgeon1-2/+2
Move errors to views folder
2012-05-23Merge pull request #1365 from sourcejedi/e_strictPhil Sturgeon1-10/+0
If we want E_STRICT, don't suppress it.