diff options
author | Bharat Mediratta <bharat@menalto.com> | 2013-05-07 10:44:34 -0700 |
---|---|---|
committer | Bharat Mediratta <bharat@menalto.com> | 2013-05-07 10:44:34 -0700 |
commit | f59f1c03b8e69241095d8c708d6a42edf6ed2a55 (patch) | |
tree | 0ff420d9fe69f0ab0dc608be18a7bc4a50da759e /system/libraries/drivers/Cache | |
parent | 48f9595f7806796f955fa1c2c6a3f6f17b1ed9ad (diff) | |
parent | 0c2d2b25fa7eb738d0a7491a793b2539a2dc4721 (diff) |
Merge pull request #352 from rlerdorf/master
Fix a couple of small mistakes
Fixes #2066 and #2067
Diffstat (limited to 'system/libraries/drivers/Cache')
-rw-r--r-- | system/libraries/drivers/Cache/Xcache.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/system/libraries/drivers/Cache/Xcache.php b/system/libraries/drivers/Cache/Xcache.php index 4c08405e..67619833 100644 --- a/system/libraries/drivers/Cache/Xcache.php +++ b/system/libraries/drivers/Cache/Xcache.php @@ -48,9 +48,9 @@ class Cache_Xcache_Driver extends Cache_Driver { foreach ($keys as $key) { - if (xcache_isset($id)) + if (xcache_isset($key)) { - $items[$key] = xcache_get($id); + $items[$key] = xcache_get($key); } else { |