Make APCBagOStuff::delete() compatible with BagOStuff::delete()
authorAntoine Musso <hashar@users.mediawiki.org>
Mon, 10 Jul 2006 19:58:27 +0000 (19:58 +0000)
committerAntoine Musso <hashar@users.mediawiki.org>
Mon, 10 Jul 2006 19:58:27 +0000 (19:58 +0000)
includes/BagOStuff.php

index 182756a..54912f9 100644 (file)
@@ -491,7 +491,7 @@ class APCBagOStuff extends BagOStuff {
                return true;
        }
        
-       function delete($key) {
+       function delete($key, $time=0) {
                apc_delete($key);
                return true;
        }