summaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)AuthorFilesLines
2013-07-30Cache Log Error LevelsTyler Brownell4-4/+4
The log messages in the cache drvier's is_supported calls are more suited for the debug level.
2013-07-29Merge pull request #2567 from vlakoff/develop-2Andrey Andreev2-24/+33
Polishing Form helper
2013-07-29Fix #2568Andrey Andreev1-2/+2
2013-07-29Change spaces to tabsvlakoff1-14/+14
2013-07-28Polishing Form helpervlakoff2-12/+21
2013-07-28Form helper _attributes_to_string() micro-optimizationvlakoff1-5/+5
As $attributes should be most of the times an array, let's save an is_string() call.
2013-07-27Merge pull request #2554 from vlakoff/develop-3Andrey Andreev5-18/+27
config->item() now returns NULL instead of FALSE when the required item doesn't exist.
2013-07-27Merge pull request #2565 from vlakoff/developAndrey Andreev1-43/+23
Form helper: refactor form_open() and _attributes_to_string()
2013-07-27More logical ordervlakoff1-11/+11
2013-07-27Form helper: refactor form_open() and _attributes_to_string()vlakoff1-38/+18
2013-07-26Fix #2560Andrey Andreev2-2/+11
2013-07-26Fix #2558Andrey Andreev1-1/+1
2013-07-25Uniformize slash_item() with item()vlakoff2-3/+3
2013-07-25Adjustments to the previous commitvlakoff3-6/+6
2013-07-24Merge pull request #2556 from vlakoff/develop-4Andrey Andreev2-4/+3
Fixes in JavaScript Library
2013-07-24Fixes in JavaScript Libraryvlakoff2-4/+3
2013-07-24Merge pull request #2555 from refringe/developAndrey Andreev1-1/+2
Cache Driver - Backup Never Loaded
2013-07-24Cache Driver - Backup Never LoadedTyler Brownell1-1/+2
The condition that checks to see if the backup driver input is valid was prefixing the input with "cache_". Since the valid driver values don't have this prefix, the condition was always returning FALSE and the backup drivers were never being loaded. I've removed the prefix in the condition and added a debug log message for when the backup driver is used.
2013-07-24config->item() now returns NULL instead of FALSE when the required item ↵vlakoff4-11/+19
doesn't exist. Uniformization with other functions. This also brings the ability to properly use booleans in configuration.
2013-07-24Add a changelog entry about changes in Array helper's element() and elements()vlakoff1-0/+1
2013-07-23[ci skip] Alter the welcome pageAndrey Andreev1-1/+1
2013-07-23Loader changes & optimizations related to issue #2551Andrey Andreev5-35/+63
2013-07-22Give Drivers a higher priority in the autoloaderAndrey Andreev1-9/+9
2013-07-22[ci skip] Fix style guide typosAndrey Andreev1-2/+2
2013-07-22[ci skip] Add a changelog entry for class file naming rule changeAndrey Andreev1-0/+1
2013-07-22Fix Loader_test::test_non_existent_model()Andrey Andreev1-1/+1
2013-07-22Fix CI_Loader::model() testsAndrey Andreev1-14/+12
2013-07-22Change class filenames to UcfirstAndrey Andreev20-85/+133
2013-07-22[ci skip] Small upgrade notes fixesAndrey Andreev1-5/+5
2013-07-22Merge pull request #2547 from HashemQolami/patch-1Andrey Andreev1-2/+2
Fix Form Validation issue with text inputs which have array as name
2013-07-21change empty function to Identical comparison operatorHashem Qolami1-2/+2
Signed-off-by: Hashem Qolami <hashem@qolami.com>
2013-07-21Fix Form Validation issue with text inputs which have array as nameHashem Qolami1-2/+2
Signed-off-by: Hashem Qolami <hashem@qolami.com>
2013-07-21Merge pull request #2545 from vlakoff/develop-3Andrey Andreev1-1/+1
Fix too verbose error logging on default production environment
2013-07-21Fix too verbose error logging on default production environmentvlakoff1-1/+1
issue was present on PHP < 5.4
2013-07-20Merge pull request #2543 from vlakoff/develop-3Andrey Andreev1-4/+15
User_agent library: robuster detection in is_referral()
2013-07-20Cache result of is_referral()vlakoff1-6/+15
2013-07-20User_agent library: robuster detection in is_referral()vlakoff1-2/+4
2013-07-19Merge pull request #2541 from vlakoff/develop-4Andrey Andreev1-2/+2
Proper directory_map test skip
2013-07-19Simplify directory_map test skipvlakoff1-1/+1
2013-07-19[ci skip] Remove a leftover description of the non-configurable translating ↵Andrey Andreev1-18/+0
of URI dashes
2013-07-19Router improvementsAndrey Andreev5-24/+65
- Make dashes-to-underscores URI segment replacement configurable via ['translate_uri_dashes']. - Make _set_routing() protected and move the call to the class constructor. - Remove redudant calls to set_class() and set_method(). - Clean-up/optimize the routes loading procedure. (fixes issue #2503)
2013-07-19Proper directory_map test skipvlakoff1-2/+2
* added the needed trailing backslash * use is_dir() instead of opendir() as it doesn't throw error on failure
2013-07-19[ci skip] Add a changelog entryAndrey Andreev1-0/+1
2013-07-19Merge pull request #2538 from vlakoff/develop-4Andrey Andreev2-14/+5
Fix config_item() returning stale values
2013-07-19[ci skip] Simplify get_file_info()Andrey Andreev1-1/+1
2013-07-19[ci skip] Skip directory_map() test when opendir() fails to open a VFS dirAndrey Andreev1-0/+7
2013-07-19Fix an argument in test_directory_helpervlakoff1-1/+1
2013-07-19Fix test_directory_mapvlakoff1-4/+6
See #2475 and point 2 of #2334
2013-07-19Remove documentation note obsoleted by previous commitvlakoff1-4/+0
2013-07-19Fix config_item() returning stale valuesvlakoff1-10/+5
Use case fixed: config_item('foobar'); // returns "some value" $CI->config->set_item('foobar', 'new value'); config_item('foobar'); // still returns "some value", expected "new value"