Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorJoas Schilling <coding@schilljs.com>2017-05-10 12:44:01 +0300
committerJoas Schilling <coding@schilljs.com>2017-05-10 12:45:08 +0300
commit253057355c1fa88c0993de17d8ca863f3fcd321d (patch)
tree3647c36ec3ea06b286431c7454b0554d922af722 /lib
parent209b05489d442652fa4d7ce3a7b37568444b5ae4 (diff)
Fix missing placeholder for doc link
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'lib')
-rw-r--r--lib/private/legacy/util.php2
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',