summaryrefslogtreecommitdiffstats
path: root/system
diff options
context:
space:
mode:
authorAndrey Andreev <narf@devilix.net>2019-10-21 09:59:45 +0200
committerGitHub <noreply@github.com>2019-10-21 09:59:45 +0200
commit35d419deb4974a2dde82e294eddb5ea943c3b313 (patch)
tree0e505195f685baba92394328f74c5682ee795238 /system
parentd180cadbfda28b3e4bfef9a0313f039a6eac211d (diff)
parent374386e402288f868f4a9c2cff2b4f8786d026bd (diff)
[ci skip] Merge pull request #5855 from galdiolo/patch-16
fix static variable name in Cache redis driver
Diffstat (limited to 'system')
-rw-r--r--system/libraries/Cache/drivers/Cache_redis.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/system/libraries/Cache/drivers/Cache_redis.php b/system/libraries/Cache/drivers/Cache_redis.php
index b72fb896a..0539e2cdf 100644
--- a/system/libraries/Cache/drivers/Cache_redis.php
+++ b/system/libraries/Cache/drivers/Cache_redis.php
@@ -88,7 +88,7 @@ class CI_Cache_redis extends CI_Driver
*
* @var string
*/
- protected static $_delete_name;
+ protected static $_sRemove_name;
// ------------------------------------------------------------------------