How did this ever work? :)

This commit is contained in:
Rasmus Lerdorf
2013-05-05 08:49:44 -07:00
parent f2def7778d
commit 0c2d2b25fa
+2 -2
View File
@@ -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
{