1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-07-30 21:40:43 +02:00

[ticket/14039] Fix file check for deleted files

PHPBB3-14039
This commit is contained in:
Mate Bartus
2015-10-18 23:04:53 +02:00
parent 0ce72f94a2
commit 4b447c71de

View File

@@ -108,7 +108,7 @@ class file_check extends task_base
$update_info['deleted'],
function ($filename) use ($root_path)
{
return !file_exists($root_path . $filename);
return file_exists($root_path . $filename);
}
);
}