- Fixed bug Trac #210 (Incorrect error message in case of uploading a file too big)

SVN:trunk[660]
This commit is contained in:
Denis Flaven
2010-08-05 12:21:50 +00:00
parent 279e0238cb
commit d6e1ccfee3
2 changed files with 2 additions and 2 deletions

View File

@@ -92,7 +92,7 @@ class utils
case UPLOAD_ERR_FORM_SIZE:
case UPLOAD_ERR_INI_SIZE:
throw new FileUploadException(Dict::Format('UI:Error:UploadedFileTooBig'), ini_get('upload_max_filesize'));
throw new FileUploadException(Dict::Format('UI:Error:UploadedFileTooBig', ini_get('upload_max_filesize')));
break;
case UPLOAD_ERR_PARTIAL: