diff options
author | Tristan Darricau <github@nicofuma.fr> | 2014-05-28 22:34:10 +0200 |
---|---|---|
committer | Tristan Darricau <github@nicofuma.fr> | 2014-05-28 22:34:10 +0200 |
commit | b75fb96bab92952011f796cf29611c6bff09dd37 (patch) | |
tree | be076b8208c94317c59fbad1acc36aeccb2964fb /phpBB/includes/functions_upload.php | |
parent | 6a3b343dfce3b0c758f94b8768f5a767a95f69ef (diff) | |
download | forums-b75fb96bab92952011f796cf29611c6bff09dd37.tar forums-b75fb96bab92952011f796cf29611c6bff09dd37.tar.gz forums-b75fb96bab92952011f796cf29611c6bff09dd37.tar.bz2 forums-b75fb96bab92952011f796cf29611c6bff09dd37.tar.xz forums-b75fb96bab92952011f796cf29611c6bff09dd37.zip |
[ticket/11226] Explicity set file_moved to false
PHPBB3-11226
Diffstat (limited to 'phpBB/includes/functions_upload.php')
-rw-r--r-- | phpBB/includes/functions_upload.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/phpBB/includes/functions_upload.php b/phpBB/includes/functions_upload.php index 16a05a0a56..21ee9a7119 100644 --- a/phpBB/includes/functions_upload.php +++ b/phpBB/includes/functions_upload.php @@ -309,6 +309,7 @@ class filespec { @unlink($this->filename); $this->error[] = $user->lang($this->upload->error_prefix . 'GENERAL_UPLOAD_ERROR', $this->destination_file); + $this->file_moved = false; return false; } else |