aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/phpbb/install
diff options
context:
space:
mode:
authorMate Bartus <mate.bartus@gmail.com>2015-10-18 23:04:53 +0200
committerMate Bartus <mate.bartus@gmail.com>2015-10-18 23:04:53 +0200
commit4b447c71de8af0530574958e4c788186b606346f (patch)
tree186f5a0beb66517ee2ddbc0dde2b5bd6613d68ab /phpBB/phpbb/install
parent0ce72f94a21d7407b08c8d2cb233d445434743b4 (diff)
downloadforums-4b447c71de8af0530574958e4c788186b606346f.tar
forums-4b447c71de8af0530574958e4c788186b606346f.tar.gz
forums-4b447c71de8af0530574958e4c788186b606346f.tar.bz2
forums-4b447c71de8af0530574958e4c788186b606346f.tar.xz
forums-4b447c71de8af0530574958e4c788186b606346f.zip
[ticket/14039] Fix file check for deleted files
PHPBB3-14039
Diffstat (limited to 'phpBB/phpbb/install')
-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);
}
);
}