Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2016-04-01 | [ci skip] Add some 'debug' log messages to CI_Session | Andrey Andreev | 3 | -1/+6 | |
2016-04-01 | [ci skip] Fix #4562 | Andrey Andreev | 1 | -1/+1 | |
2016-03-22 | random_bytes()-related improvements | Andrey Andreev | 1 | -6/+20 | |
See #4260 | |||||
2016-03-22 | [ci skip] Escape image paths passed as shell arguments to imagemagick | Andrey Andreev | 1 | -7/+8 | |
2016-03-22 | [ci skip] Validate width, height config values | Andrey Andreev | 1 | -1/+5 | |
2016-03-16 | A small Migrations tweak | Andrey Andreev | 1 | -1/+6 | |
2016-03-16 | Fix #4539 | Andrey Andreev | 1 | -34/+63 | |
2016-03-16 | Fix a Form_validation bug that unnecessarily modifes $_POST | Andrey Andreev | 1 | -1/+1 | |
2016-03-16 | Simplify a bit of internal code in CI_Form_validation | Andrey Andreev | 1 | -18/+2 | |
2016-03-15 | Add __isset() to CI_Session | Andrey Andreev | 1 | -0/+18 | |
2016-03-12 | [ci skip] Deprecate prep_for_form() in Form_validation | Andrey Andreev | 1 | -3/+4 | |
2016-03-12 | A small memory optimization to CI_Form_validation | Andrey Andreev | 1 | -3/+3 | |
2016-03-12 | Merge pull request #4526 from masterklavi/redis_refactor | Andrey Andreev | 1 | -3/+5 | |
Remove an unnecessary assignment from Cache_redis configuration | |||||
2016-03-12 | Merge pull request #4524 from masterklavi/memcached_refactoring | Andrey Andreev | 1 | -12/+4 | |
Cache_memcached configuration refactoring | |||||
2016-03-12 | Merge pull request #4525 from masterklavi/memcached_instanceof | Andrey Andreev | 1 | -4/+4 | |
Use instanceof instead of get_class() in Cache_memcached | |||||
2016-03-12 | Merge pull request #4521 from masterklavi/redis_docblock | Andrey Andreev | 1 | -6/+6 | |
[ci skip] Added missing variable names to Cache_redis docblocks | |||||
2016-03-12 | Merge pull request #4523 from masterklavi/memcached_docblock | Andrey Andreev | 1 | -2/+2 | |
[ci skip] Added missing variable names to Cache_memcached docblocks | |||||
2016-03-12 | Merge pull request #4522 from masterklavi/memcached_destruct | Andrey Andreev | 1 | -0/+21 | |
Added destructor to Cache_memcached | |||||
2016-03-12 | Fix #4516 | Andrey Andreev | 1 | -1/+4 | |
2016-03-11 | Fix a number of CI_Cache bugs | Andrey Andreev | 4 | -16/+45 | |
Fixes #4277 Supersedes #4474 Really fixes #4066 | |||||
2016-03-11 | Revert an unintended change from a027a7fd0d770cec0d71e888d8b6f4aa1568ce9f | Andrey Andreev | 1 | -1/+1 | |
2016-03-10 | Fix a logical error from last commit | Andrey Andreev | 1 | -1/+1 | |
2016-03-10 | Improve ext/session error messages | Andrey Andreev | 4 | -32/+51 | |
2016-03-07 | [ci skip] Fix Profiler not applying htmlspecialchars() to all inputs | Andrey Andreev | 1 | -26/+18 | |
2016-02-29 | [ci skip] Apply #4491 to Memcached driver | Andrey Andreev | 1 | -1/+1 | |
2016-02-29 | Merge pull request #4491 from roastduck/develop | Andrey Andreev | 1 | -1/+1 | |
[ci skip] Clean current lock key on close() in redis session driver | |||||
2016-02-24 | Merge pull request #4480 from versalle88/develop | Andrey Andreev | 1 | -1/+1 | |
Changed class_exists() calls to ignore __autoload() | |||||
2016-02-13 | [ci skip] Fix Memcached replace() result code checks in CI_Session | Andrey Andreev | 1 | -2/+2 | |
Related #3919 | |||||
2016-02-10 | Fix a bug where CI_Session_memcached_driver doesn't write empty sessions | Andrey Andreev | 1 | -4/+7 | |
Related: #3919 | |||||
2016-02-10 | [ci skip] Fix Memcached session lock handling and error checking around ↵ | Andrey Andreev | 1 | -9/+17 | |
replace() usage | |||||
2016-02-09 | Rename back a variable changed by the last PR merge | Andrey Andreev | 1 | -4/+4 | |
Because. | |||||
2016-02-09 | Merge pull request #4342 from jspreddy/sai/form_validation_refactor | Andrey Andreev | 1 | -30/+36 | |
Abstract error message fetching in Form_validation | |||||
2016-02-05 | Merge pull request #4424 from jonty-comp/develop | Andrey Andreev | 1 | -3/+16 | |
[ci skip] Fix PHP session_write_close() warning when writing a new session to Redis | |||||
2016-02-04 | Fix #4430 | Andrey Andreev | 1 | -0/+6 | |
2016-01-30 | Fix #4415 and add unit tests for https://bugs.php.net/bug.php?id=51192 | Andrey Andreev | 1 | -0/+8 | |
2016-01-20 | [ci skip] Remove a trailing space from latest PR merge | Andrey Andreev | 1 | -1/+1 | |
2016-01-20 | Respect $config['cur_page'] variable for pagination | jekkos | 1 | -1/+5 | |
After upgrading to CI3 I noticed that developers are able to determine the current page counter for pagination based on * Explicit query string parameters * URI segment configuration In earlier versions a developer could still set the current page counter in the pagination lib directly which is useful if you want to use pagination with HTTP POST instead of GET. This could be done by passing $config['cur_page'] = '10'; to the pagination function for link generation. Currently this code has changed and will always try to check whether the uri segment is a valid number or not, even if the cur_page variable was passed in the associative array, and fallback to zero if it fails to validate that result. This can be easily resolved by checking whether the counter was already set with a valid number from the $config array before trying to resolve it from the uri segment. This fix give a developer more flexibility and stop CI from overwriting the externally set value with an incorrect one. Signed-off-by: jekkos <jeroen.peelaerts@gmail.com> | |||||
2016-01-20 | Fix #4391 | Andrey Andreev | 1 | -7/+11 | |
2016-01-11 | [ci skip] Update ellislab.com links to https too | Andrey Andreev | 38 | -38/+38 | |
2016-01-11 | [ci skip] Update codeigniter.com links to https | Andrey Andreev | 38 | -72/+72 | |
2016-01-11 | [ci skip] Bump year to 2016 | Andrey Andreev | 38 | -76/+76 | |
2016-01-11 | Fix #4374 | Andrey Andreev | 1 | -0/+12 | |
2016-01-07 | Fix #4362 | Andrey Andreev | 2 | -2/+8 | |
2015-12-30 | Fix #4343 | Andrey Andreev | 1 | -2/+1 | |
2015-12-15 | Fix logical errors from af849696d43f5c3b68962af1ae5096151a6d9f1a | Andrey Andreev | 3 | -4/+4 | |
2015-12-15 | Really fix #4039 | Andrey Andreev | 1 | -1/+1 | |
A typo from 8df6efd402180a6361b4dd619f5535d6c2bed334 | |||||
2015-12-14 | Fix #4312 | Andrey Andreev | 1 | -6/+3 | |
2015-12-12 | [ci skip] Proper error handling for Sessions on PHP 5 | Andrey Andreev | 5 | -78/+133 | |
This was actually a PHP bug, see https://wiki.php.net/rfc/session.user.return-value Also related: #4039 | |||||
2015-12-11 | Fix #4039 | Andrey Andreev | 1 | -0/+6 | |
2015-11-24 | Use PHP7's random_bytes() when possible | Andrey Andreev | 1 | -0/+5 | |
Close #4260 |