1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-07-31 22:10:45 +02:00

[ticket/12755] Add language string for timed out remote upload

PHPBB3-12755
This commit is contained in:
Marc Alexander
2014-06-23 20:35:36 +02:00
parent 0499655ba4
commit 8817b59377
3 changed files with 3 additions and 1 deletions

View File

@@ -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;
}
}