// #PSFV-94 : Update and bug fix with new toolbar implementation

git-svn-id: http://dev.prestashop.com/svn/v1/branches/1.5.x@9873 b9a71923-0436-4b27-9f14-aed3839534dd
This commit is contained in:
dSevere
2011-11-04 09:19:50 +00:00
parent e5a66e4f95
commit 7a412e08ef
4 changed files with 18 additions and 16 deletions
+4 -4
View File
@@ -347,8 +347,8 @@ class HelperListCore extends Helper
'current_index' => $this->currentIndex,
'view' => in_array('view', $this->actions),
'edit' => in_array('edit', $this->actions),
'has_actions' => (bool)count($this->actions),
'has_bulk_actions' => (bool)count($this->bulk_actions),
'has_actions' => !empty($this->actions),
'has_bulk_actions' => !empty($this->bulk_actions),
'list_skip_actions' => $this->list_skip_actions,
));
return $this->content_tpl->fetch();
@@ -591,8 +591,8 @@ class HelperListCore extends Helper
'identifier' => $this->identifier,
'id_cat' => $id_cat,
'shop_link_type' => $this->shopLinkType,
'has_actions' => (bool)count($this->actions),
'has_bulk_actions' => (bool)count($this->bulk_actions),
'has_actions' => !empty($this->actions),
'has_bulk_actions' => !empty($this->bulk_actions),
'toolbar_btn' => $this->toolbar_btn,
'table_id' => isset($table_id) ? $table_id : null,
'table_dnd' => isset($table_dnd) ? $table_dnd : null,