diff --git a/phpBB/phpbb/install/module/update_filesystem/task/file_check.php b/phpBB/phpbb/install/module/update_filesystem/task/file_check.php index 9945e61714..4d9f736b0a 100644 --- a/phpBB/phpbb/install/module/update_filesystem/task/file_check.php +++ b/phpBB/phpbb/install/module/update_filesystem/task/file_check.php @@ -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); } ); }