From aa6235fbce2bf19d323ce9adb60d72f74b959c59 Mon Sep 17 00:00:00 2001 From: Nathaniel Catchpole Date: Thu, 26 May 2016 09:10:23 +0100 Subject: [PATCH] Issue #2699267 by Chi: Wrong placeholder format in file_managed_file_save_upload() --- core/modules/file/file.module | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/modules/file/file.module b/core/modules/file/file.module index bbf3bff9edca..96bc90e7528b 100644 --- a/core/modules/file/file.module +++ b/core/modules/file/file.module @@ -1177,7 +1177,7 @@ function file_managed_file_save_upload($element, FormStateInterface $form_state) $destination = isset($element['#upload_location']) ? $element['#upload_location'] : NULL; if (isset($destination) && !file_prepare_directory($destination, FILE_CREATE_DIRECTORY)) { - \Drupal::logger('file')->notice('The upload directory %directory for the file field !name could not be created or is not accessible. A newly uploaded file could not be saved in this directory as a consequence, and the upload was canceled.', array('%directory' => $destination, '!name' => $element['#field_name'])); + \Drupal::logger('file')->notice('The upload directory %directory for the file field %name could not be created or is not accessible. A newly uploaded file could not be saved in this directory as a consequence, and the upload was canceled.', array('%directory' => $destination, '%name' => $element['#field_name'])); $form_state->setError($element, t('The file could not be uploaded.')); return FALSE; }