
{l s='In order to perform site maintenance, our online shop has shut down temporarily.'}
{l s='We apologize for the inconvenience and ask that you please try again later.'}
diff --git a/classes/controller/FrontController.php b/classes/controller/FrontController.php index 5dbb50536..5aa106da2 100755 --- a/classes/controller/FrontController.php +++ b/classes/controller/FrontController.php @@ -604,7 +604,12 @@ class FrontControllerCore extends Controller if (!in_array(Tools::getRemoteAddr(), explode(',', Configuration::get('PS_MAINTENANCE_IP')))) { header('HTTP/1.1 503 temporarily overloaded'); - $this->context->smarty->assign('favicon_url', _PS_IMG_.Configuration::get('PS_FAVICON')); + $this->context->smarty->assign(array( + 'favicon_url' => _PS_IMG_.Configuration::get('PS_FAVICON'), + 'logo_image_width' => Configuration::get('SHOP_LOGO_WIDTH'), + 'logo_image_height' => Configuration::get('SHOP_LOGO_HEIGHT'), + 'logo_url' => _PS_IMG_.Configuration::get('PS_LOGO').'?'.Configuration::get('PS_IMG_UPDATE_TIME') + )); $template_dir = ($this->context->getMobileDevice() == true ? _PS_THEME_MOBILE_DIR_ : _PS_THEME_DIR_); $this->smartyOutputContent($template_dir.'maintenance.tpl'); diff --git a/themes/default/maintenance.tpl b/themes/default/maintenance.tpl index 34adbb7f9..d80e06e77 100644 --- a/themes/default/maintenance.tpl +++ b/themes/default/maintenance.tpl @@ -41,7 +41,7 @@

{l s='In order to perform site maintenance, our online shop has shut down temporarily.'}
{l s='We apologize for the inconvenience and ask that you please try again later.'}