r15513 MediaWiki - Code Review archive
Repository:
MediaWiki
Revision:
<
r15512
|
r15513
|
r15514
>
Date:
19:58, 10 July 2006
Author:
hashar
Status:
old
Tags:
Comment:
Make APCBagOStuff::delete() compatible with BagOStuff::delete()
Modified paths:
/trunk/phase3/includes/BagOStuff.php
(modified) (
history
)
Diff
[
purge
]
Index: trunk/phase3/includes/BagOStuff.php
—
—
@@ -491,7 +491,7 @@
492
492
return true;
493
493
}
494
494
495
- function delete($key) {
495
+ function delete($key, $time=0) {
496
496
apc_delete($key);
497
497
return true;
498
498
}