diff --git a/core/includes/install.inc b/core/includes/install.inc index 3a9c2bc..61725da 100644 --- a/core/includes/install.inc +++ b/core/includes/install.inc @@ -504,7 +504,7 @@ function drupal_install_config_directories() { // Bail out using a similar error message as in system_requirements(). if (!file_prepare_directory($config_directories[CONFIG_SYNC_DIRECTORY], FILE_CREATE_DIRECTORY) && !file_exists($config_directories[CONFIG_SYNC_DIRECTORY])) { - throw new Exception(t('The directory %directory could not be created. To proceed with the installation, either create the directory or ensure that the installer has the permissions to create it automatically. For more information, see the online handbook.', array( + throw new Exception(t('The directory %directory could not be created or could not be made writable. To proceed with the installation, either create the directory and modify its permissions manually or ensure that the installer has the permissions to create it automatically. For more information, see the online handbook.', array( '%directory' => config_get_config_directory(CONFIG_SYNC_DIRECTORY), ':handbook_url' => 'https://www.drupal.org/server-permissions', ))); diff --git a/core/modules/config/config.install b/core/modules/config/config.install index c971ae6..15c4775 100644 --- a/core/modules/config/config.install +++ b/core/modules/config/config.install @@ -23,8 +23,7 @@ function config_requirements($phase) { // web writable. if ($phase !== 'install' && !is_writable($directory)) { $requirements['config directory ' . CONFIG_SYNC_DIRECTORY] = [ - 'title' => t('Configuration directory: %type', ['%type' => CONFIG_SYNC_DIRECTORY]), - 'description' => t('The directory %directory is not writable.', ['%directory' => $directory]), + 'title' => t('The directory %directory is not writable.', ['%directory' => $directory]), 'severity' => REQUIREMENT_WARNING, ]; }