diff options
author | Lukas Reschke <lukas@statuscode.ch> | 2014-04-27 18:28:18 +0200 |
---|---|---|
committer | Lukas Reschke <lukas@statuscode.ch> | 2014-04-27 18:28:18 +0200 |
commit | e910e6314008113b953e75878d53cc7a8c80327a (patch) | |
tree | 68d588abe120915271595a649c0570da3b74c935 /lib | |
parent | 8e5c9eea3a776ae38ff3fe7bccb4449156a10d41 (diff) | |
parent | 1d9ac38da67f31ebb6f4f7c68d92f42f427fe0bf (diff) | |
download | nextcloud-server-e910e6314008113b953e75878d53cc7a8c80327a.tar.gz nextcloud-server-e910e6314008113b953e75878d53cc7a8c80327a.zip |
Merge pull request #8372 from owncloud/give-admins-a-hint
Clarify the trusted_domain error page
Diffstat (limited to 'lib')
-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 0f55c1175c7..37008b5a351 100644 --- a/lib/base.php +++ b/lib/base.php @@ -721,7 +721,7 @@ class OC { header('Status: 400 Bad Request'); OC_Template::printErrorPage( $l->t('You are accessing the server from an untrusted domain.'), - $l->t('Please contact your administrator') + $l->t('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; } |