Revert "Issue #92944 by jhedstrom, SiliconMind: Drupal won't report file upload error when UPLOAD_ERR_NO_TMP_DIR occurs"

This reverts commit 1cb897de83.
8.0.x
Nathaniel Catchpole 2014-12-31 14:38:24 +00:00
parent 78e9940a30
commit 1ad3433ccb
1 changed files with 0 additions and 15 deletions

View File

@ -734,21 +734,6 @@ function file_save_upload($form_field_name, $validators = array(), $destination
$files[$i] = FALSE;
continue;
case UPLOAD_ERR_NO_TMP_DIR:
drupal_set_message(t('The file %file could not be saved because server is missing a temporary folder.', array('%file' => $file_info->getFilename())), 'error');
$files[$i] = FALSE;
continue;
case UPLOAD_ERR_CANT_WRITE:
drupal_set_message(t('The file %file could not be saved because server is unable to write to disk.', array('%file' => $file_info->getFilename())), 'error');
$files[$i] = FALSE;
continue;
case UPLOAD_ERR_EXTENSION:
drupal_set_message(t('The file %file could not be saved because a PHP extension stopped the file upload. PHP does not provide a way to ascertain which extension caused the file upload to stop; examining the list of loaded extensions with phpinfo() may help.', array('%file' => $file_info->getFilename())), 'error');
$files[$i] = FALSE;
continue;
case UPLOAD_ERR_OK:
// Final check that this is a valid upload, if it isn't, use the
// default error handler.