summaryrefslogtreecommitdiff
path: root/includes
diff options
context:
space:
mode:
authorPierre Schmitz <pierre@archlinux.de>2007-06-29 22:29:32 +0200
committerPierre Schmitz <pierre@archlinux.de>2007-06-29 22:29:32 +0200
commit74351519c2b0fe4ecd2db0d6a932dc2f72960e12 (patch)
tree755d2f91d7bb117b5ec9d4c2d5a4129658c7ee82 /includes
parent928928ba676d1d8498130bd68bc5116574d3636e (diff)
Unterstützung für apc_add() hinzugefügt
Diffstat (limited to 'includes')
-rw-r--r--includes/BagOStuff.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/includes/BagOStuff.php b/includes/BagOStuff.php
index 7fed9274..969450a5 100644
--- a/includes/BagOStuff.php
+++ b/includes/BagOStuff.php
@@ -507,9 +507,9 @@ class APCBagOStuff extends BagOStuff {
return apc_delete( $key );
}
-// function add($key, $value, $exptime=0) {
-// return apc_add( $key, $value, $exptime );
-// }
+ function add($key, $value, $exptime=0) {
+ return apc_add( $key, $value, $exptime );
+ }
}