diff options
author | Roeland Jago Douma <rullzer@users.noreply.github.com> | 2017-05-10 14:44:24 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-05-10 14:44:24 +0200 |
commit | f95f1b20f1048f59a5cbf670daaea03da8b05baa (patch) | |
tree | f2b00b1eb6ce9c08113139de4ff3a80f87017305 | |
parent | 486bfa5c78612c6f2ef91dd99e4983e9761dc714 (diff) | |
parent | 253057355c1fa88c0993de17d8ca863f3fcd321d (diff) | |
download | nextcloud-server-f95f1b20f1048f59a5cbf670daaea03da8b05baa.tar.gz nextcloud-server-f95f1b20f1048f59a5cbf670daaea03da8b05baa.zip |
Merge pull request #4787 from nextcloud/missing-parameter
Fix missing placeholder for doc link
-rw-r--r-- | lib/private/legacy/util.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/private/legacy/util.php b/lib/private/legacy/util.php index 7750e84f065..a1e6f2fe702 100644 --- a/lib/private/legacy/util.php +++ b/lib/private/legacy/util.php @@ -704,7 +704,7 @@ class OC_Util { } } else if (!is_writable($CONFIG_DATADIRECTORY) or !is_readable($CONFIG_DATADIRECTORY)) { //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')]); $errors[] = [ 'error' => 'Your data directory is not writable', |