Add compatability function for APC cache

remotes/origin/stable45
Bart Visscher 2012-06-22 17:17:55 +07:00
parent f655981baf
commit ebfc5b2762
1 changed files with 8 additions and 0 deletions

8
lib/cache/apc.php vendored

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