summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorThomas Müller <thomas.mueller@tmit.eu>2016-01-20 15:23:01 +0100
committerThomas Müller <thomas.mueller@tmit.eu>2016-01-20 15:23:01 +0100
commit647d8ea5decad8140f9c280ae90039aa71c4eb93 (patch)
treed46b94e1d1657fe6e6fdbfaa61fad8758e18eb2d /lib
parent9b581de0f84257c0d66c1f052a9d51ecd1b0e975 (diff)
parenta225fe4c969bdff5fb2041b9c680a8fe988cc1b0 (diff)
downloadnextcloud-server-647d8ea5decad8140f9c280ae90039aa71c4eb93.tar.gz
nextcloud-server-647d8ea5decad8140f9c280ae90039aa71c4eb93.zip
Merge pull request #21775 from owncloud/apcu-iterator-constructor
Fix constructor arguments for APCUIterator
Diffstat (limited to 'lib')
-rw-r--r--lib/private/memcache/apcu.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/private/memcache/apcu.php b/lib/private/memcache/apcu.php
index 9000df65dcd..ddd16ae1202 100644
--- a/lib/private/memcache/apcu.php
+++ b/lib/private/memcache/apcu.php
@@ -60,7 +60,7 @@ class APCu extends Cache implements IMemcache {
if(class_exists('\APCIterator')) {
$iter = new \APCIterator('user', '/^' . $ns . '/', APC_ITER_KEY);
} else {
- $iter = new \APCUIterator('user', '/^' . $ns . '/', APC_ITER_KEY);
+ $iter = new \APCUIterator('/^' . $ns . '/', APC_ITER_KEY);
}
return apcu_delete($iter);
}