mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-28 14:18:52 +00:00
[ticket/14039] Fix file check for deleted files
PHPBB3-14039
This commit is contained in:
parent
0ce72f94a2
commit
4b447c71de
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||
}
|
||||
);
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue