Merge pull request #5826 from nextcloud/12-backport-5821

[stable12] Fix error message on untrusted domain error page
This commit is contained in:
Morris Jobke 2017-07-21 23:35:46 +02:00 committed by GitHub
commit 2663aa253e
1 changed files with 1 additions and 1 deletions

View File

@ -862,7 +862,7 @@ class Server extends ServerContainer implements IServerContainer {
$classExists = false;
}
if ($classExists && $c->getConfig()->getSystemValue('installed', false) && $c->getAppManager()->isInstalled('theming')) {
if ($classExists && $c->getConfig()->getSystemValue('installed', false) && $c->getAppManager()->isInstalled('theming') && $c->getTrustedDomainHelper()->isTrustedDomain($c->getRequest()->getInsecureServerHost())) {
return new ThemingDefaults(
$c->getConfig(),
$c->getL10N('theming'),