// Fix token on adminHome

This commit is contained in:
rMalie
2011-09-26 08:24:38 +00:00
parent ea8a38b22c
commit 71a2a66abc
2 changed files with 8 additions and 4 deletions
+5 -1
View File
@@ -38,7 +38,7 @@ class AdminControllerCore extends Controller
public function __construct()
{
parent::__construct();
// if this->template is empty,
// if this->template is empty,
// generate the filename from the classname, without "Controller" suffix
if (empty($this->template))
{
@@ -78,6 +78,10 @@ class AdminControllerCore extends Controller
$this->token = Tools::getAdminToken($className.(int)$this->id.(int)$this->context->employee->id);
// Fix for AdminHome
if ($className == 'AdminHome')
$_POST['token'] = $this->token;
if (!Shop::isMultiShopActivated())
$this->shopLinkType = '';
}