]> source.dussan.org Git - nextcloud-server.git/commitdiff
fix upload error reporting
authorRobin Appelman <icewind1991@gmail.com>
Fri, 23 Dec 2011 18:48:22 +0000 (19:48 +0100)
committerRobin Appelman <icewind1991@gmail.com>
Fri, 23 Dec 2011 18:49:02 +0000 (19:49 +0100)
files/ajax/upload.php

index 041ec0c92e354284fb12d55d123eb94225b81094..5f0f68d9531394827bd8b30a2862f98739deab01 100644 (file)
@@ -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"),