diff options
author | Marc Alexander <admin@m-a-styles.de> | 2014-06-23 20:35:36 +0200 |
---|---|---|
committer | Marc Alexander <admin@m-a-styles.de> | 2014-06-23 20:35:36 +0200 |
commit | 8817b5937747f0b82e180bd3ce7d38b8aa68577e (patch) | |
tree | 1eec732bcc2809f1bc34ac728407e3288d6066f6 /phpBB/includes/functions_upload.php | |
parent | 0499655ba4448fd2ae232d82bd78b47809e56591 (diff) | |
download | forums-8817b5937747f0b82e180bd3ce7d38b8aa68577e.tar forums-8817b5937747f0b82e180bd3ce7d38b8aa68577e.tar.gz forums-8817b5937747f0b82e180bd3ce7d38b8aa68577e.tar.bz2 forums-8817b5937747f0b82e180bd3ce7d38b8aa68577e.tar.xz forums-8817b5937747f0b82e180bd3ce7d38b8aa68577e.zip |
[ticket/12755] Add language string for timed out remote upload
PHPBB3-12755
Diffstat (limited to 'phpBB/includes/functions_upload.php')
-rw-r--r-- | phpBB/includes/functions_upload.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/includes/functions_upload.php b/phpBB/includes/functions_upload.php index afffff1351..f4b9262d19 100644 --- a/phpBB/includes/functions_upload.php +++ b/phpBB/includes/functions_upload.php @@ -825,7 +825,7 @@ class fileupload // Cancel upload if we exceed timeout if ((time() - $upload_start) >= $this->upload_timeout) { - $file = new fileerror($user->lang[$this->error_prefix . 'EMPTY_REMOTE_DATA']); + $file = new fileerror($user->lang[$this->error_prefix . 'REMOTE_UPLOAD_TIMEOUT']); return $file; } } |