Merge pull request #4787 from nextcloud/missing-parameter
Fix missing placeholder for doc link
This commit is contained in:
commit
f95f1b20f1
|
@ -704,7 +704,7 @@ class OC_Util {
|
||||||
}
|
}
|
||||||
} else if (!is_writable($CONFIG_DATADIRECTORY) or !is_readable($CONFIG_DATADIRECTORY)) {
|
} else if (!is_writable($CONFIG_DATADIRECTORY) or !is_readable($CONFIG_DATADIRECTORY)) {
|
||||||
//common hint for all file permissions error messages
|
//common hint for all file permissions error messages
|
||||||
$permissionsHint = $l->t('Permissions can usually be fixed by giving the webserver write access to the root directory. See %.',
|
$permissionsHint = $l->t('Permissions can usually be fixed by giving the webserver write access to the root directory. See %s.',
|
||||||
[$urlGenerator->linkToDocs('admin-dir_permissions')]);
|
[$urlGenerator->linkToDocs('admin-dir_permissions')]);
|
||||||
$errors[] = [
|
$errors[] = [
|
||||||
'error' => 'Your data directory is not writable',
|
'error' => 'Your data directory is not writable',
|
||||||
|
|
Loading…
Reference in New Issue