summaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)AuthorFilesLines
2012-06-04Direct return from mimes config, instead of using global $mimes;Phil Sturgeon5-143/+139
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-04Loader was too specific about === "", some cases were NULL.Phil Sturgeon1-1/+1
Signed-off-by: Phil Sturgeon <email@philsturgeon.co.uk>
2012-06-04Merge branch 'develop' of github.com:EllisLab/CodeIgniter into developPhil Sturgeon1-2/+2
2012-06-04Added a "non-DB" phpunit.xml for local testingPhil Sturgeon1-0/+25
Any developer can use this without having to set up DB's and have PostgreSQL installed by running: phpunit --configuration=tests/phpunit.xml This just skips DB stuff, so code coverage will look lower than it is.
2012-06-04Fix issue #1423Andrey Andreev1-2/+2
2012-06-04Alter SQLite3's version() method and clear some spacesAndrey Andreev3-6/+6
2012-06-04Fix an SQLite3 pconnect() bug + other minor changesAndrey Andreev5-10/+10
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 Sturgeon88-600/+608
2012-06-03Added support for $_SERVER['CI_ENV'] in index.phpPhil Sturgeon3-3/+10
Remember this is entirely optional, nothing will change if you do not which to use Multiple Environments just like right now. If you DO set CI_ENV you can manipulate the switch that controls error reporting, etc, so set it to "production" on your live site to hide errors from users. If you don't require this logic you can remove it, or change it entirely to check HTTP_HOST for environment subdomains, or check IP address, etc.
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-02Fixed bug created in `test_where_custom_string()` in ↵Alex Bilbie1-1/+1
/tests/codeigniter/database/query_builder/where_test.php by d6d1150959c95e43d310d0bc45f8bd674ff6460c
2012-06-02Changed load model examples to use lowercase model name. Fixes #1417Alex Bilbie2-9/+9
2012-06-02Changed example model name to follow the CI styleguide class naming conventionsAlex Bilbie1-1/+1
2012-06-02Replaced `==` with `===` in /application/views/welcome_message.phpAlex Bilbie1-1/+1
2012-06-02Replaced `==` with `===` and `!=` with `!==` in /testsAlex Bilbie4-9/+9
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-06-01Merge pull request #1356 from thanpolas/new-config-load-sequenceAndrey Andreev3-12/+19
New config load sequence
2012-05-31Merge branch 'new-config-load-sequence' of github.com:thanpolas/CodeIgniter ↵Thanasis Polychronakis0-0/+0
into new-config-load-sequence
2012-05-31Changed documentation and added note to changelog as per @philsturgeon requestThanasis Polychronakis2-5/+8
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-31Merge pull request #1413 from vlakoff/developPhil Sturgeon1-1/+2
automatic list formatting was broken
2012-05-31automatic list formatting was brokenvlakoff1-1/+2
2012-05-31Merge pull request #1408 from madhazelnut/patch-2Phil Sturgeon1-1/+1
create_captcha() helper documentation
2012-05-30create_captcha() helper documentationmadhazelnut1-1/+1
2012-05-27Merge branch 'develop' of github.com:EllisLab/CodeIgniter into developPhil Sturgeon43-611/+489
2012-05-27Merge pull request #1402 from toopay/test-suitePhil Sturgeon12-105/+191
Continuation of Unit-Testing
2012-05-27Adding more flexibilities to mock-commonTaufan Aditya1-64/+103
2012-05-27Continuation for Security and Table code-coverage, add coverage report to travisTaufan Aditya11-41/+88
2012-05-26Fix issue #862Andrey Andreev3-54/+25
2012-05-26Merge pull request #1401 from toopay/test-suiteAndrey Andreev1-4/+4
Allowing main constants defined via phpunit config or other bootstraper
2012-05-26Move count_all() from the drivers to CI_DB_driverAndrey Andreev13-349/+30
2012-05-26Allowing main constants defined via phpunit config or other bootstraperTaufan Aditya1-4/+4
2012-05-26Merge pull request #1400 from toopay/db-test-suitePhil Sturgeon1-14/+27
Escape test
2012-05-26Remove ternaryTaufan Aditya1-6/+18
2012-05-25Clean upTaufan Aditya1-2/+2
2012-05-25Explicitely testing escape_like_str APITaufan Aditya9-18/+62