summaryrefslogtreecommitdiffstats
path: root/system/libraries/Cache/drivers/Cache_apc.php
diff options
context:
space:
mode:
authorGreg Aker <greg@gregaker.net>2011-01-29 23:16:58 +0100
committerGreg Aker <greg@gregaker.net>2011-01-29 23:16:58 +0100
commit999e7472aa094dac056494ff41772f9204da04b2 (patch)
tree6a0d1544a98a6d24facafad7fe8c1bda8d1bef0d /system/libraries/Cache/drivers/Cache_apc.php
parent854072b386c3143c9df9200d202056f40ffce473 (diff)
Fix #21 - Typo in get_metadata() function of apc and memcached cache drivers.
Diffstat (limited to 'system/libraries/Cache/drivers/Cache_apc.php')
-rw-r--r--system/libraries/Cache/drivers/Cache_apc.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/system/libraries/Cache/drivers/Cache_apc.php b/system/libraries/Cache/drivers/Cache_apc.php
index e82e8e1f5..4b995c793 100644
--- a/system/libraries/Cache/drivers/Cache_apc.php
+++ b/system/libraries/Cache/drivers/Cache_apc.php
@@ -114,7 +114,7 @@ class Cache_apc extends CI_Driver {
return FALSE;
}
- list($value, $time, $ttl) = $stored;
+ list($data, $time, $ttl) = $stored;
return array(
'expire' => $time + $ttl,