mirror of
https://github.com/phpbb/phpbb.git
synced 2025-07-31 22:10:45 +02:00
[ticket/14039] Fix file check for deleted files
PHPBB3-14039
This commit is contained in:
@@ -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);
|
||||
}
|
||||
);
|
||||
}
|
||||
|
Reference in New Issue
Block a user