summaryrefslogtreecommitdiffstats
path: root/system
AgeCommit message (Collapse)AuthorFilesLines
2013-09-13Drop the unused parameter from log_message() / CI_Log::write_log()Andrey Andreev3-4/+4
2013-09-12Merge pull request #2633 from kaiwangchen/simulate_complete_exception_handlerAndrey Andreev2-0/+29
Simulate a complete custom exception handler by redirecting uncaught events
2013-09-12Merge pull request #2631 from mjnaderi/developAndrey Andreev1-4/+33
Fixed errors in _minify_script_style
2013-09-12Fixed coding stylejudge1-3/+8
2013-09-12Remove unnecessary chdir() in the shutdown handler.Kaiwang Chen1-1/+0
2013-09-11Really fix #2490, rel: #2629Andrey Andreev2-2/+2
2013-09-11Simulate a complete custom exception handler by redirecting uncaught events.Kaiwang Chen2-0/+30
2013-09-10Add support for UPDATE ... RETURNING statements in PostgreSQLAndrey Andreev2-2/+2
An improved version of PR #2629. Also removes REPLACE from the regular expression, as it is not supported by PostgreSQL.
2013-09-10Fixed coding stylejudge1-9/+13
2013-09-10Remove Javascript inline comments + improved detecting whether the pointer ↵judge1-4/+4
is in a string or not
2013-09-10Improved detecting whether the pointer is in a string or notjudge1-2/+22
2013-09-10Removed unnecessary parameterjudge1-1/+1
2013-09-10fixed error in finding closing tagjudge1-1/+1
2013-09-08Merge pull request #2627 from vlakoff/develop-3Andrey Andreev3-3/+3
Adjust a few phpdoc in query builder code
2013-09-08Adjust a few phpdoc in query builder codevlakoff3-3/+3
2013-09-08Code cleanup in db->order_by()vlakoff1-1/+1
2013-08-19Kill the damn kittenAndrey Andreev1-2/+2
2013-08-19Adjustments in static reference handlingvlakoff1-8/+5
2013-08-19Allow items to be set even if they were not present yetvlakoff1-5/+2
2013-08-19Ensure get_config() optional argument is an array, remove useless testvlakoff1-7/+4
2013-08-17Fix $replace parameter handling in get_config()vlakoff2-28/+32
Code was reached only on first function call, then short-circuited because of the reference cache.
2013-08-11Input class: change behavior of get_post() method, add post_get() methodvlakoff1-1/+17
followup to PR #2522
2013-08-07Add a changelog entry for PR #2590 and further optimize log_message()Andrey Andreev1-11/+1
CI_Log::write_log() already checks the log threshold, so there's no point in doing it in log_message() as well.
2013-08-07Merge pull request #2590 from vlakoff/developAndrey Andreev1-2/+3
Fix noneffective static variable cache in log_message()
2013-08-07An improved version of PR #2584, fixes #2583Andrey Andreev1-11/+13
2013-08-07Fix noneffective static variable cache in log_message()vlakoff1-2/+3
2013-08-06Replace php_sapi_name() function with PHP_SAPI constantvlakoff2-2/+2
exact same behavior but faster, shorter
2013-08-06Various typos and tabs adjustmentsvlakoff6-8/+8
2013-08-06Fix #2585Andrey Andreev1-1/+1
2013-08-06Fix #2501 & another -related bugAndrey Andreev2-1/+4
2013-08-04Rename bad chars property to filename_bad_chars, remove the setter and add ↵Hunter Wu1-15/+2
changelog entry
2013-08-03Make the bad filename array public in Security libraryHunter Wu1-18/+38
2013-08-03Revert "Add windows filename rule as an option for upload files"Hunter Wu2-42/+21
This reverts commit 23719ab569c9c8d6b791f65d7861daba3895ddcb.
2013-08-01Add windows filename rule as an option for upload filesHunter Wu2-21/+42
2013-07-31Optimize CI_Session::__construct() routines and make driver validity check ↵Andrey Andreev1-21/+18
stricter
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 Andreev1-2/+7
Polishing Form helper
2013-07-29Fix #2568Andrey Andreev1-2/+2
2013-07-28Polishing Form helpervlakoff1-1/+6
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 Andreev1-5/+5
config->item() now returns NULL instead of FALSE when the required item doesn't exist.
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 Andreev1-2/+10
2013-07-26Fix #2558Andrey Andreev1-1/+1
2013-07-25Uniformize slash_item() with item()vlakoff1-2/+2
2013-07-25Adjustments to the previous commitvlakoff1-1/+1
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-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.