diff options
author | Lukas Reschke <lukas@statuscode.ch> | 2014-04-27 18:34:35 +0200 |
---|---|---|
committer | Lukas Reschke <lukas@statuscode.ch> | 2014-04-27 18:35:42 +0200 |
commit | 4df0130aa04012228c1f4859496acfb5abbbddf0 (patch) | |
tree | 03c0471d3a4f54c59329ebd58bb0972f9861d5ad | |
parent | 321dacabd43ad041bffb02a4b1c8543b65b634b8 (diff) | |
download | nextcloud-server-4df0130aa04012228c1f4859496acfb5abbbddf0.tar.gz nextcloud-server-4df0130aa04012228c1f4859496acfb5abbbddf0.zip |
Clarify the trusted_domain error page
Backport of https://github.com/owncloud/core/pull/8372
-rw-r--r-- | lib/base.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/base.php b/lib/base.php index a17cf19099b..c20812aa19b 100644 --- a/lib/base.php +++ b/lib/base.php @@ -652,7 +652,7 @@ class OC { header('Status: 400 Bad Request'); OC_Template::printErrorPage( 'You are accessing the server from an untrusted domain.', - 'Please contact your administrator' + 'Please contact your administrator. If you are an administrator of this instance, configure the "trusted_domain" setting in config/config.php. An example configuration is provided in config/config.sample.php.' ); return; } |