Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2016-03-12 | Fixed the index existence error | Masterklavi | 1 | -2/+2 | |
2016-03-12 | Changed the methods of working with serializable values | Masterklavi | 1 | -30/+17 | |
2016-03-12 | Added a second check "instanceof" | Masterklavi | 1 | -1/+1 | |
2016-03-12 | The "get_class($A) == B" replaced by "$A instanceof B" | Masterklavi | 1 | -3/+3 | |
2016-03-12 | Combined two "if" conditions to one | Masterklavi | 1 | -5/+2 | |
2016-03-12 | Reduction of constructions | Masterklavi | 1 | -6/+1 | |
2016-03-12 | Renamed $this->_memcache_conf to $this->_config | Masterklavi | 1 | -5/+5 | |
2016-03-12 | Added variables to Docblocks (memcached) | Masterklavi | 1 | -2/+2 | |
2016-03-12 | Added the destructor (disconnect from memcache(d)) | Masterklavi | 1 | -0/+21 | |
2016-03-12 | Added variables to Docblocks where they are skipped | Masterklavi | 1 | -4/+4 | |
2016-03-11 | Merge branch '3.0-stable' into develop | Andrey Andreev | 9 | -86/+137 | |
Resolved conflicts: system/core/CodeIgniter.php user_guide_src/source/changelog.rst user_guide_src/source/conf.py user_guide_src/source/installation/downloads.rst user_guide_src/source/installation/upgrading.rst | |||||
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-29 | fix typo | __RD | 1 | -1/+1 | |
2016-02-29 | delete lock directly -> call _release_lock() | __RD | 1 | -2/+1 | |
2016-02-28 | clean current lock key in redis session driver | roastduck | 1 | -0/+1 | |
set $this->_lock_key to NULL after close Signed-off-by: roastduck <beantang.tang@gmail.com> | |||||
2016-02-24 | Merge pull request #4480 from versalle88/develop | Andrey Andreev | 1 | -1/+1 | |
Changed class_exists() calls to ignore __autoload() | |||||
2016-02-23 | Fixed typo | versalle88 | 1 | -1/+1 | |
2016-02-23 | Removed | versalle88 | 1 | -1/+1 | |
2016-02-23 | Changed calls to class_exists to ignore __autoload() to match other calls | versalle88 | 1 | -1/+1 | |
2016-02-23 | Changed calls to class_exists to ignore __autoload() to match other calls | versalle88 | 1 | -1/+1 | |
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 | 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-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-09 | Merge branch '3.0-stable' into develop | Andrey Andreev | 2 | -0/+14 | |
Fixed conflicts: user_guide_src/source/overview/at_a_glance.rst | |||||
2016-02-09 | Code formatting changes, again. I am bad at this. | Sai Phaninder Reddy Jonnala | 1 | -6/+5 | |
2016-02-08 | code styling changes as suggested by @narfbg | Sai Phaninder Reddy Jonnala | 1 | -21/+15 | |
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-05 | Fix regression on PHP7 when regenerating the session (#4362) | Jonty Sewell | 1 | -1/+3 | |
2016-02-05 | Setting the flag to FALSE is unnecessary since it defaults to FALSE, ↵ | Jonty Sewell | 1 | -10/+1 | |
therefore this block of code can be reduced to a single statement Signed-off-by: Jonty Sewell <jontysewell@gmail.com> | |||||
2016-02-05 | Set the _key_exists flag to TRUE when the key does in fact exist. Set it to ↵ | Jonty Sewell | 1 | -2/+7 | |
FALSE if the ID is being regenerated, and set it to TRUE once it's been written. Signed-off-by: Jonty Sewell <jontysewell@gmail.com> | |||||
2016-02-05 | Add a flag to determine whether the redis key currently exists, and if not, ↵ | Jonty Sewell | 1 | -2/+17 | |
force creation of it at write-time Signed-off-by: Jonty Sewell <jontysewell@gmail.com> | |||||
2016-02-05 | Revert previous changes - fixing the source of the problem rather than ↵ | Jonty Sewell | 1 | -9/+3 | |
working around it Signed-off-by: Jonty Sewell <jontysewell@gmail.com> | |||||
2016-02-04 | Fix #4430 | Andrey Andreev | 1 | -0/+6 | |
2016-02-03 | If attempting to write an empty session to Redis, a key will not actually be ↵ | Jonty Sewell | 1 | -3/+9 | |
created, so when the driver tries to set the expiration timeout on the key, 0 is returned, triggering a warning from session_write_close Signed-off-by: Jonty Sewell <jontysewell@gmail.com> | |||||
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-26 | Merge branch '3.0-stable' into develop | Andrey Andreev | 1 | -7/+11 | |
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 | [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> |