diff options
author | Claudio Galdiolo <claudio.galdiolo@gmail.com> | 2019-10-10 18:01:49 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-10-10 18:01:49 +0200 |
commit | 374386e402288f868f4a9c2cff2b4f8786d026bd (patch) | |
tree | 0e505195f685baba92394328f74c5682ee795238 /system/libraries/Cache/drivers/Cache_redis.php | |
parent | d180cadbfda28b3e4bfef9a0313f039a6eac211d (diff) |
fix static field name
field with name $_delete_name already defined, use $_sRemove_name
Diffstat (limited to 'system/libraries/Cache/drivers/Cache_redis.php')
-rw-r--r-- | system/libraries/Cache/drivers/Cache_redis.php | 2 |
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; // ------------------------------------------------------------------------ |