Skip to content
Snippets Groups Projects
Commit ebfc5b27 authored by Bart Visscher's avatar Bart Visscher
Browse files

Add compatability function for APC cache

parent f655981b
No related branches found
No related tags found
No related merge requests found
......@@ -44,3 +44,11 @@ class OC_Cache_APC {
}
}
}
if(!function_exists('apc_exists')) {
function apc_exists($keys)
{
$result;
apc_fetch($keys, $result);
return $result;
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment