Open pserrer opened 7 years ago
Currently there's big bug in the clearAllExceptPageCache method.
clearAllExceptPageCache
Instead of clearing all caches expect cache_pages and cache_pagesection, it clears all caches, because the $toBeFlushed var is never used inside the foreach loop.
cache_pages
cache_pagesection
$toBeFlushed
I would suggest to change line 163 to this:
foreach ($toBeFlushedas $cacheKey) {
Currently there's big bug in the
clearAllExceptPageCache
method.Instead of clearing all caches expect
cache_pages
andcache_pagesection
, it clears all caches, because the$toBeFlushed
var is never used inside the foreach loop.I would suggest to change line 163 to this: