From 1cb897de83fad9778ee1564bc73a90719440c09e Mon Sep 17 00:00:00 2001 From: Nathaniel Catchpole Date: Tue, 30 Dec 2014 12:10:13 +0000 Subject: [PATCH] Issue #92944 by jhedstrom, SiliconMind: Drupal won't report file upload error when UPLOAD_ERR_NO_TMP_DIR occurs --- core/modules/file/file.module | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/core/modules/file/file.module b/core/modules/file/file.module index 9438f4ac38..82e9f9654b 100644 --- a/core/modules/file/file.module +++ b/core/modules/file/file.module @@ -734,6 +734,21 @@ 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. -- GitLab