Add compatability function for APC cache

This commit is contained in:
Bart Visscher 2012-06-22 17:17:55 +02:00
parent f655981baf
commit ebfc5b2762

8
lib/cache/apc.php vendored
View file

@ -44,3 +44,11 @@ class OC_Cache_APC {
}
}
}
if(!function_exists('apc_exists')) {
function apc_exists($keys)
{
$result;
apc_fetch($keys, $result);
return $result;
}
}