diff options
author | Robin Appelman <icewind1991@gmail.com> | 2011-12-23 19:48:22 +0100 |
---|---|---|
committer | Robin Appelman <icewind1991@gmail.com> | 2011-12-23 19:49:02 +0100 |
commit | 1fe55b665609ad5af1c6b5af4f0b4fad9bede9f3 (patch) | |
tree | 7693f7a0c04c3e85a476d0484b0d5b0fee161309 /files/ajax | |
parent | 9bb004963b0ed205a01bfd7e09744263136d5b66 (diff) | |
download | nextcloud-server-1fe55b665609ad5af1c6b5af4f0b4fad9bede9f3.tar.gz nextcloud-server-1fe55b665609ad5af1c6b5af4f0b4fad9bede9f3.zip |
fix upload error reporting
Diffstat (limited to 'files/ajax')
-rw-r--r-- | files/ajax/upload.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/files/ajax/upload.php b/files/ajax/upload.php index 041ec0c92e3..5f0f68d9531 100644 --- a/files/ajax/upload.php +++ b/files/ajax/upload.php @@ -14,9 +14,10 @@ if (!isset($_FILES['files'])) { } foreach ($_FILES['files']['error'] as $error) { if ($error != 0) { + $l=new OC_L10N('files'); $errors = array( 0=>$l->t("There is no error, the file uploaded with success"), - 1=>$l->t("The uploaded file exceeds the upload_max_filesize directive in php.ini"), + 1=>$l->t("The uploaded file exceeds the upload_max_filesize directive in php.ini").ini_get('upload_max_filesize'), 2=>$l->t("The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form"), 3=>$l->t("The uploaded file was only partially uploaded"), 4=>$l->t("No file was uploaded"), |