From: Alexander Ebert Date: Thu, 27 Nov 2014 12:14:58 +0000 (+0100) Subject: Fixed the offline page yielding an error X-Git-Tag: 2.1.0_Beta_1~144 X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=d71bdc80939b162b0467b87891661e02de3b6961;p=GitHub%2FWoltLab%2FWCF.git Fixed the offline page yielding an error --- diff --git a/wcfsetup/install/files/lib/system/request/RequestHandler.class.php b/wcfsetup/install/files/lib/system/request/RequestHandler.class.php index b46623fb92..17734a7dfc 100644 --- a/wcfsetup/install/files/lib/system/request/RequestHandler.class.php +++ b/wcfsetup/install/files/lib/system/request/RequestHandler.class.php @@ -111,7 +111,8 @@ class RequestHandler extends SingletonFactory { else { @header('HTTP/1.1 503 Service Unavailable'); WCF::getTPL()->assign(array( - 'templateName' => 'offline' + 'templateName' => 'offline', + 'templateNameApplication' => 'wcf' )); WCF::getTPL()->display('offline'); }