Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2013-08-17 | Fix $replace parameter handling in get_config() | vlakoff | 2 | -28/+32 | |
Code was reached only on first function call, then short-circuited because of the reference cache. | |||||
2013-08-11 | Input class: change behavior of get_post() method, add post_get() method | vlakoff | 1 | -1/+17 | |
followup to PR #2522 | |||||
2013-08-07 | Add a changelog entry for PR #2590 and further optimize log_message() | Andrey Andreev | 1 | -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-07 | Merge pull request #2590 from vlakoff/develop | Andrey Andreev | 1 | -2/+3 | |
Fix noneffective static variable cache in log_message() | |||||
2013-08-07 | An improved version of PR #2584, fixes #2583 | Andrey Andreev | 1 | -11/+13 | |
2013-08-07 | Fix noneffective static variable cache in log_message() | vlakoff | 1 | -2/+3 | |
2013-08-06 | Replace php_sapi_name() function with PHP_SAPI constant | vlakoff | 2 | -2/+2 | |
exact same behavior but faster, shorter | |||||
2013-08-06 | Various typos and tabs adjustments | vlakoff | 6 | -8/+8 | |
2013-08-06 | Fix #2585 | Andrey Andreev | 1 | -1/+1 | |
2013-08-06 | Fix #2501 & another -related bug | Andrey Andreev | 2 | -1/+4 | |
2013-08-04 | Rename bad chars property to filename_bad_chars, remove the setter and add ↵ | Hunter Wu | 1 | -15/+2 | |
changelog entry | |||||
2013-08-03 | Make the bad filename array public in Security library | Hunter Wu | 1 | -18/+38 | |
2013-08-03 | Revert "Add windows filename rule as an option for upload files" | Hunter Wu | 2 | -42/+21 | |
This reverts commit 23719ab569c9c8d6b791f65d7861daba3895ddcb. | |||||
2013-08-01 | Add windows filename rule as an option for upload files | Hunter Wu | 2 | -21/+42 | |
2013-07-31 | Optimize CI_Session::__construct() routines and make driver validity check ↵ | Andrey Andreev | 1 | -21/+18 | |
stricter | |||||
2013-07-30 | Cache Log Error Levels | Tyler Brownell | 4 | -4/+4 | |
The log messages in the cache drvier's is_supported calls are more suited for the debug level. | |||||
2013-07-29 | Merge pull request #2567 from vlakoff/develop-2 | Andrey Andreev | 1 | -2/+7 | |
Polishing Form helper | |||||
2013-07-29 | Fix #2568 | Andrey Andreev | 1 | -2/+2 | |
2013-07-28 | Polishing Form helper | vlakoff | 1 | -1/+6 | |
2013-07-28 | Form helper _attributes_to_string() micro-optimization | vlakoff | 1 | -5/+5 | |
As $attributes should be most of the times an array, let's save an is_string() call. | |||||
2013-07-27 | Merge pull request #2554 from vlakoff/develop-3 | Andrey Andreev | 1 | -5/+5 | |
config->item() now returns NULL instead of FALSE when the required item doesn't exist. | |||||
2013-07-27 | More logical order | vlakoff | 1 | -11/+11 | |
2013-07-27 | Form helper: refactor form_open() and _attributes_to_string() | vlakoff | 1 | -38/+18 | |
2013-07-26 | Fix #2560 | Andrey Andreev | 1 | -2/+10 | |
2013-07-26 | Fix #2558 | Andrey Andreev | 1 | -1/+1 | |
2013-07-25 | Uniformize slash_item() with item() | vlakoff | 1 | -2/+2 | |
2013-07-25 | Adjustments to the previous commit | vlakoff | 1 | -1/+1 | |
2013-07-24 | Merge pull request #2556 from vlakoff/develop-4 | Andrey Andreev | 2 | -4/+3 | |
Fixes in JavaScript Library | |||||
2013-07-24 | Fixes in JavaScript Library | vlakoff | 2 | -4/+3 | |
2013-07-24 | Cache Driver - Backup Never Loaded | Tyler Brownell | 1 | -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-24 | config->item() now returns NULL instead of FALSE when the required item ↵ | vlakoff | 1 | -3/+3 | |
doesn't exist. Uniformization with other functions. This also brings the ability to properly use booleans in configuration. | |||||
2013-07-23 | Loader changes & optimizations related to issue #2551 | Andrey Andreev | 2 | -33/+32 | |
2013-07-22 | Give Drivers a higher priority in the autoloader | Andrey Andreev | 1 | -9/+9 | |
2013-07-22 | Change class filenames to Ucfirst | Andrey Andreev | 3 | -25/+26 | |
2013-07-21 | change empty function to Identical comparison operator | Hashem Qolami | 1 | -2/+2 | |
Signed-off-by: Hashem Qolami <hashem@qolami.com> | |||||
2013-07-21 | Fix Form Validation issue with text inputs which have array as name | Hashem Qolami | 1 | -2/+2 | |
Signed-off-by: Hashem Qolami <hashem@qolami.com> | |||||
2013-07-20 | Cache result of is_referral() | vlakoff | 1 | -6/+15 | |
2013-07-20 | User_agent library: robuster detection in is_referral() | vlakoff | 1 | -2/+4 | |
2013-07-19 | Router improvements | Andrey Andreev | 2 | -19/+38 | |
- 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-19 | Merge pull request #2538 from vlakoff/develop-4 | Andrey Andreev | 1 | -10/+5 | |
Fix config_item() returning stale values | |||||
2013-07-19 | [ci skip] Simplify get_file_info() | Andrey Andreev | 1 | -1/+1 | |
2013-07-19 | Fix config_item() returning stale values | vlakoff | 1 | -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" | |||||
2013-07-18 | More verbose error messages for incorrect/missing database groups (based on ↵ | Andrey Andreev | 1 | -2/+6 | |
PR #2040) | |||||
2013-07-18 | Fix a Memcache(d) default configuration bug (based on #249) | Andrey Andreev | 1 | -18/+8 | |
2013-07-18 | Add color customization to the CAPTCHA helper | Andrey Andreev | 1 | -17/+37 | |
Ref: Issue #867 & PRs #1405, #2485 | |||||
2013-07-18 | Micro-optimization on base_url() & site_url() | Andrey Andreev | 1 | -6/+6 | |
2013-07-18 | Add that parameter for real :) | Andrey Andreev | 1 | -1/+1 | |
2013-07-18 | Add an optional parameter to URL helpers base_url() and site_url() ↵ | Andrey Andreev | 1 | -7/+21 | |
(supersedes #2535) | |||||
2013-07-17 | Fix #2490 (an improved version of PR #2534) | Andrey Andreev | 2 | -0/+26 | |
2013-07-17 | [ci skip] Remove some empty lines | Andrey Andreev | 7 | -7/+7 | |