// fix added toolbar in AdminInformationController

git-svn-id: http://dev.prestashop.com/svn/v1/branches/1.5.x@10445 b9a71923-0436-4b27-9f14-aed3839534dd
This commit is contained in:
lLefevre
2011-11-22 16:05:08 +00:00
parent 62696d85f9
commit 40d2a6282b
3 changed files with 160 additions and 123 deletions
@@ -27,13 +27,15 @@
class AdminInformationControllerCore extends AdminController
{
public function initContent()
{
$this->display = 'view';
parent::initContent();
}
$this->context->smarty->assign(array(
public function initView()
{
$this->tpl_view_vars = array(
'version' => array(
'mysql' => Db::getInstance()->getVersion(),
'php' => phpversion(),
@@ -55,9 +57,12 @@ class AdminInformationControllerCore extends AdminController
'port' => Configuration::get('PS_MAIL_SMTP_PORT'),
),
'user_agent' => $_SERVER['HTTP_USER_AGENT'],
));
);
$this->tpl_view_vars = array_merge($this->getTestResult(), $this->tpl_view_vars);
$this->context->smarty->assign($this->getTestResult());
$this->toolbar_title = $this->l('Tools : Informations');
unset($this->toolbar_btn['cancel']);
return parent::initView();
}
/**