// #PSFV-94 - fixed bug related to new breadcrumb system

This commit is contained in:
mMarinetti
2011-11-04 10:59:10 +00:00
parent 4e578617b2
commit 4949475fae
8 changed files with 51 additions and 47 deletions
+9
View File
@@ -344,6 +344,7 @@ class HelperListCore extends Helper
'has_actions' => !empty($this->actions),
'has_bulk_actions' => !empty($this->bulk_actions),
'list_skip_actions' => $this->list_skip_actions,
'tpl_vars' => $this->tpl_vars
));
return $this->content_tpl->fetch();
}
@@ -593,6 +594,10 @@ class HelperListCore extends Helper
'name' => isset($name) ? $name : null,
'name_id' => isset($name_id) ? $name_id : null,
'show_toolbar' => $this->show_toolbar,
'back' => Tools::getValue('back'),
'no_back' => $this->no_back,
'tpl_vars' => $this->tpl_vars,
));
return $this->header_tpl->fetch();
@@ -609,6 +614,10 @@ class HelperListCore extends Helper
'current' => $this->currentIndex,
'simple_header' => $this->simple_header,
'bulk_actions' => $this->bulk_actions,
'back' => Tools::getValue('back'),
'no_back' => $this->no_back,
'tpl_vars' =>$this->tpl_vars
));
return $this->footer_tpl->fetch();
}