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
diff options
context:
space:
mode:
authorLukas Reschke <lukas@statuscode.ch>2014-04-27 20:34:35 +0400
committerLukas Reschke <lukas@statuscode.ch>2014-04-27 20:35:42 +0400
commit4df0130aa04012228c1f4859496acfb5abbbddf0 (patch)
tree03c0471d3a4f54c59329ebd58bb0972f9861d5ad
parent321dacabd43ad041bffb02a4b1c8543b65b634b8 (diff)
Clarify the trusted_domain error page
Backport of https://github.com/owncloud/core/pull/8372
-rw-r--r--lib/base.php2
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;
}