diff options
author | Volkan Gezer <volkangezer@gmail.com> | 2014-04-02 12:41:46 +0200 |
---|---|---|
committer | Volkan Gezer <volkangezer@gmail.com> | 2014-04-02 12:41:46 +0200 |
commit | b6ad7c3cdd245888d6df45f919c1a6e2ba44bc51 (patch) | |
tree | cde3b1864c303a90b79823a0ecc7b8a0641f92b2 /lib/private/config.php | |
parent | 0e93c3fd9a969594661fd3165f91878759ef3003 (diff) | |
download | nextcloud-server-b6ad7c3cdd245888d6df45f919c1a6e2ba44bc51.tar.gz nextcloud-server-b6ad7c3cdd245888d6df45f919c1a6e2ba44bc51.zip |
Fix admin-dir_permissions redirection when cannot write warning
is shown.
Diffstat (limited to 'lib/private/config.php')
-rw-r--r-- | lib/private/config.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/private/config.php b/lib/private/config.php index 56f47256134..6701ca0532b 100644 --- a/lib/private/config.php +++ b/lib/private/config.php @@ -172,7 +172,7 @@ class Config { $result = @file_put_contents($this->configFilename, $content); if (!$result) { $defaults = new \OC_Defaults; - $url = \OC_Helper::linkToDocs('admin-dir-permissions'); + $url = \OC_Helper::linkToDocs('admin-dir_permissions'); throw new HintException( "Can't write into config directory!", 'This can usually be fixed by ' |