diff --git a/classes/controller/AdminController.php b/classes/controller/AdminController.php index a50721962..c7455779f 100644 --- a/classes/controller/AdminController.php +++ b/classes/controller/AdminController.php @@ -1579,6 +1579,14 @@ public function initPageHeaderToolbar() $this->context->smarty->assign('help_link', 'http://help.prestashop.com/'.Language::getIsoById($this->context->employee->id_lang).'/doc/' .Tools::getValue('controller').'?version='._PS_VERSION_.'&country='.Language::getIsoById($this->context->employee->id_lang)); + + $this->context->smarty->assign(array( + 'show_page_header_toolbar' => $this->show_page_header_toolbar, + 'page_header_toolbar_title' => $this->page_header_toolbar_title, + 'title' => $this->page_header_toolbar_title, + 'toolbar_btn' => $this->page_header_toolbar_btn, + 'page_header_toolbar_btn' => $this->page_header_toolbar_btn, + )); } /** @@ -2112,11 +2120,6 @@ public function initContent() 'content' => $this->content, 'lite_display' => $this->lite_display, 'url_post' => self::$currentIndex.'&token='.$this->token, - 'show_page_header_toolbar' => $this->show_page_header_toolbar, - 'page_header_toolbar_title' => $this->page_header_toolbar_title, - 'title' => $this->page_header_toolbar_title, - 'toolbar_btn' => $this->page_header_toolbar_btn, - 'page_header_toolbar_btn' => $this->page_header_toolbar_btn )); }