mirror of
https://github.com/phpbb/phpbb.git
synced 2025-08-03 07:18:08 +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'],
|
$update_info['deleted'],
|
||||||
function ($filename) use ($root_path)
|
function ($filename) use ($root_path)
|
||||||
{
|
{
|
||||||
return !file_exists($root_path . $filename);
|
return file_exists($root_path . $filename);
|
||||||
}
|
}
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user