diff options
author | Mate Bartus <mate.bartus@gmail.com> | 2015-10-18 23:04:53 +0200 |
---|---|---|
committer | Mate Bartus <mate.bartus@gmail.com> | 2015-10-18 23:04:53 +0200 |
commit | 4b447c71de8af0530574958e4c788186b606346f (patch) | |
tree | 186f5a0beb66517ee2ddbc0dde2b5bd6613d68ab /phpBB/phpbb/install | |
parent | 0ce72f94a21d7407b08c8d2cb233d445434743b4 (diff) | |
download | forums-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.php | 2 |
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); } ); } |