From d71bdc80939b162b0467b87891661e02de3b6961 Mon Sep 17 00:00:00 2001 From: Alexander Ebert Date: Thu, 27 Nov 2014 13:14:58 +0100 Subject: [PATCH] Fixed the offline page yielding an error --- .../install/files/lib/system/request/RequestHandler.class.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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'); } -- 2.20.1