From: Antoine Musso Date: Mon, 10 Jul 2006 19:58:27 +0000 (+0000) Subject: Make APCBagOStuff::delete() compatible with BagOStuff::delete() X-Git-Tag: 1.31.0-rc.0~56318 X-Git-Url: http://git.cyclocoop.org/?a=commitdiff_plain;h=bd84b94673ea721a29263cadf0ea5c509ed08e4b;p=lhc%2Fweb%2Fwiklou.git Make APCBagOStuff::delete() compatible with BagOStuff::delete() --- diff --git a/includes/BagOStuff.php b/includes/BagOStuff.php index 182756ab93..54912f905c 100644 --- a/includes/BagOStuff.php +++ b/includes/BagOStuff.php @@ -491,7 +491,7 @@ class APCBagOStuff extends BagOStuff { return true; } - function delete($key) { + function delete($key, $time=0) { apc_delete($key); return true; }