1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-07-31 22:10:45 +02:00

[ticket/11199] Cache purge does not remove dumped container

PHPBB3-11199
This commit is contained in:
Marc Alexander
2012-11-14 23:34:28 +01:00
parent 9c28470ad7
commit d982d432eb
2 changed files with 2 additions and 2 deletions

View File

@@ -214,7 +214,7 @@ class phpbb_cache_driver_file extends phpbb_cache_driver_base
while (($entry = readdir($dir)) !== false)
{
if (strpos($entry, 'container') !== 0 &&
if (strpos($entry, 'container') === false &&
strpos($entry, 'sql_') !== 0 &&
strpos($entry, 'data_') !== 0 &&
strpos($entry, 'ctpl_') !== 0 &&