Add compatability function for APC cache

remotes/origin/stable45
Bart Visscher 14 years ago
parent f655981baf
commit ebfc5b2762
  1. 8
      lib/cache/apc.php

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;
}
}

Loading…
Cancel
Save