]> source.dussan.org Git - nextcloud-server.git/commitdiff
Fix constructor arguments for APCUIterator
authorRobin Appelman <icewind@owncloud.com>
Mon, 18 Jan 2016 11:20:05 +0000 (12:20 +0100)
committerRobin Appelman <icewind@owncloud.com>
Mon, 18 Jan 2016 11:20:05 +0000 (12:20 +0100)
lib/private/memcache/apcu.php

index 9000df65dcd6d43f839f88cd79c05348ddfbf742..ddd16ae1202019eaaa9ab92ff78d6f3289a189df 100644 (file)
@@ -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);
        }