diff options
author | Morris Jobke <hey@morrisjobke.de> | 2017-05-08 21:16:08 -0500 |
---|---|---|
committer | Morris Jobke <hey@morrisjobke.de> | 2017-05-08 21:16:08 -0500 |
commit | 9309217ecb760a9070d9b69c051e167888aa5458 (patch) | |
tree | e2f8b8d8a3b1971154c18b83a766c8065fbdebda /lib/private/Config.php | |
parent | f6a4028fad57ff2be8752b17c66b990e042cfdf9 (diff) | |
download | nextcloud-server-9309217ecb760a9070d9b69c051e167888aa5458.tar.gz nextcloud-server-9309217ecb760a9070d9b69c051e167888aa5458.zip |
Fix escaped HTML on error pages
* fixes #4655
Signed-off-by: Morris Jobke <hey@morrisjobke.de>
Diffstat (limited to 'lib/private/Config.php')
-rw-r--r-- | lib/private/Config.php | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/private/Config.php b/lib/private/Config.php index f15854b6113..b4fe9e03d23 100644 --- a/lib/private/Config.php +++ b/lib/private/Config.php @@ -249,8 +249,7 @@ class Config { $url = \OC::$server->getURLGenerator()->linkToDocs('admin-dir_permissions'); throw new HintException( "Can't write into config directory!", - 'This can usually be fixed by ' - .'<a href="' . $url . '" target="_blank" rel="noreferrer">giving the webserver write access to the config directory</a>.'); + 'This can usually be fixed by giving the webserver write access to the config directory. See ' . $url); } // Try to acquire a file lock |