[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);
}
);
}