mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 08:52:39 +01:00
Merge pull request #143 from dzhibas/exception-error-fix
Exception configuration directive fix (php.ini) upload_max_filesize
This commit is contained in:
commit
111ecabc5f
1 changed files with 1 additions and 1 deletions
|
@ -22,7 +22,7 @@ final class PhabricatorFileUploadException extends Exception {
|
||||||
$map = array(
|
$map = array(
|
||||||
UPLOAD_ERR_INI_SIZE =>
|
UPLOAD_ERR_INI_SIZE =>
|
||||||
"Uploaded file is too large: file is larger than the ".
|
"Uploaded file is too large: file is larger than the ".
|
||||||
"'upload_max_size' setting in php.ini.",
|
"'upload_max_filesize' setting in php.ini.",
|
||||||
UPLOAD_ERR_FORM_SIZE =>
|
UPLOAD_ERR_FORM_SIZE =>
|
||||||
"File is too large.",
|
"File is too large.",
|
||||||
UPLOAD_ERR_PARTIAL =>
|
UPLOAD_ERR_PARTIAL =>
|
||||||
|
|
Loading…
Reference in a new issue