aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/phpbb/files/upload.php
diff options
context:
space:
mode:
Diffstat (limited to 'phpBB/phpbb/files/upload.php')
-rw-r--r--phpBB/phpbb/files/upload.php7
1 files changed, 2 insertions, 5 deletions
diff --git a/phpBB/phpbb/files/upload.php b/phpBB/phpbb/files/upload.php
index 328dd49a06..bd379924e7 100644
--- a/phpBB/phpbb/files/upload.php
+++ b/phpBB/phpbb/files/upload.php
@@ -245,15 +245,12 @@ class upload
break;
case UPLOAD_ERR_NO_TMP_DIR:
- $error = 'Temporary folder could not be found. Please check your PHP installation.';
- break;
-
case UPLOAD_ERR_CANT_WRITE:
- $error = 'Can’t write to temporary folder.';
+ $error = $this->language->lang($this->error_prefix . 'NO_TEMP_DIR');
break;
case UPLOAD_ERR_EXTENSION:
- $error = 'A PHP extension has stopped the file upload.';
+ $error = $this->language->lang($this->error_prefix . 'PHP_UPLOAD_STOPPED');
break;
default: