]> git.mxchange.org Git - friendica.git/blobdiff - src/Core/Cache/ArrayCache.php
Merge pull request #7754 from annando/aria
[friendica.git] / src / Core / Cache / ArrayCache.php
index 5add98cc2a8e69ef6929d52ce77d378ddaa91d39..c6f3983ee2586efed12aeed3a8db4d516ccef3f7 100644 (file)
@@ -21,7 +21,7 @@ class ArrayCache extends Cache implements IMemoryCache
         */
        public function getAllKeys($prefix = null)
        {
-               return $this->filterArrayKeysByPrefix($this->cachedData, $prefix);
+               return $this->filterArrayKeysByPrefix(array_keys($this->cachedData), $prefix);
        }
 
        /**