Skip to content
This repository has been archived by the owner on Nov 25, 2020. It is now read-only.

Commit

Permalink
Fix APCIterator usage
Browse files Browse the repository at this point in the history
  • Loading branch information
cdujeu committed May 19, 2016
1 parent 9d8753c commit 508dcc7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/src/plugins/cache.doctrine/ext/PydioApcuCache.php
Expand Up @@ -48,7 +48,7 @@ public function deleteKeysStartingWith($pattern)
{
$pattern = '/^'.$this->namespacedIdAsPattern($pattern).'/';
//SAMPLE /^pydio-unique-id_nodes_\[list\:\/\/1/
$iterator = new APCIterator('user', $pattern);
$iterator = new \APCIterator('user', $pattern);
foreach ($iterator as $data) {
$this->doDelete($data['key']);
}
Expand Down

0 comments on commit 508dcc7

Please sign in to comment.