X-Git-Url: https://git.wh0rd.org/?a=blobdiff_plain;f=include%2Ffunctions2.php;h=7e1171b7d218b112ebcf4baf5ef16c732ffee93f;hb=1a322ff3dfb47a73f52f4076b9d73601999c573e;hp=dceea507ee882ccbc6f15935c1a959ad7795ad26;hpb=a84fb943b4c5a030e215fa819e579ca4646cf617;p=tt-rss.git diff --git a/include/functions2.php b/include/functions2.php index dceea507..7e1171b7 100644 --- a/include/functions2.php +++ b/include/functions2.php @@ -2449,4 +2449,20 @@ return $tmp; } + + function get_upload_error_message($code) { + + $errors = array( + 0 => __('There is no error, the file uploaded with success'), + 1 => __('The uploaded file exceeds the upload_max_filesize directive in php.ini'), + 2 => __('The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form'), + 3 => __('The uploaded file was only partially uploaded'), + 4 => __('No file was uploaded'), + 6 => __('Missing a temporary folder'), + 7 => __('Failed to write file to disk.'), + 8 => __('A PHP extension stopped the file upload.'), + ); + + return $errors[$code]; + } ?>