Issue #3155400 by jungle, alexpott: Change $requirements["$file file writeable"] to $requirements["$file file writable"]

merge-requests/3390/head
catch 2023-02-06 13:15:48 +00:00
parent 25f9a654b5
commit 12db5f38bc
1 changed files with 1 additions and 1 deletions

View File

@ -2195,7 +2195,7 @@ function install_check_requirements($install_state) {
} }
// If the $file is not writable, throw an error. // If the $file is not writable, throw an error.
if (!$writable) { if (!$writable) {
$requirements["$file file writeable"] = [ $requirements["$file file writable"] = [
'title' => $default_file_info['title'], 'title' => $default_file_info['title'],
'value' => t('The %file is not writable.', ['%file' => $default_file_info['title']]), 'value' => t('The %file is not writable.', ['%file' => $default_file_info['title']]),
'severity' => REQUIREMENT_ERROR, 'severity' => REQUIREMENT_ERROR,