aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB
diff options
context:
space:
mode:
Diffstat (limited to 'phpBB')
-rw-r--r--phpBB/phpbb/install/module/update_filesystem/task/file_check.php2
1 files changed, 1 insertions, 1 deletions
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);
}
);
}