// Assigned compared products to smarty

This commit is contained in:
Damien Metzger
2013-11-04 11:00:50 +01:00
parent e03a86ad05
commit cfeeda7d9b
4 changed files with 9 additions and 6 deletions

View File

@@ -1543,7 +1543,7 @@ class AdminControllerCore extends Controller
'link' => $this->context->link,
'shop_name' => Configuration::get('PS_SHOP_NAME'),
'base_url' => $this->context->shop->getBaseURL(),
'tab' => $tab, // Deprecated, this tab is declared in the foreach, so it's the last tab in the foreach
'tab' => isset($tab) ? $tab : null, // Deprecated, this tab is declared in the foreach, so it's the last tab in the foreach
'current_parent_id' => (int)Tab::getCurrentParentId(),
'tabs' => $tabs,
'install_dir_exists' => file_exists(_PS_ADMIN_DIR_.'/../install'),