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

Commit

Permalink
Fix APCUIterator call
Browse files Browse the repository at this point in the history
  • Loading branch information
cdujeu committed Oct 7, 2016
1 parent 28edc3a commit 5a2faed
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/src/plugins/cache.doctrine/src/PydioApcuCache.php
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ public function deleteKeysStartingWith($pattern) {
if(class_exists("\\APCIterator")){
$iterator = new \APCIterator('user', $pattern);
}else if(class_exists("\\APCUIterator")){
$iterator = new \APCUIterator('user', $pattern);
$iterator = new \APCUIterator($pattern);
}else{
error_log("Trying to delete cache entry using pattern, but could not find either APCIterator or APCUIterator");
return;
Expand Down

0 comments on commit 5a2faed

Please sign in to comment.