Non-ajax file submissions should throw NoUploadedMediaException

This commit is contained in:
Mikael Nordfeldth 2015-01-22 12:38:57 +01:00
parent 964d13792b
commit 9f87359d04
1 changed files with 1 additions and 1 deletions

View File

@ -177,7 +177,7 @@ class MediaFile
' partially uploaded.'));
case UPLOAD_ERR_NO_FILE:
// No file; probably just a non-AJAX submission.
return;
throw new NoUploadedMediaException($param);
case UPLOAD_ERR_NO_TMP_DIR:
// TRANS: Client exception thrown when a temporary folder is not present to store a file upload.
throw new ClientException(_('Missing a temporary folder.'));