//update property _listSkipDelete

git-svn-id: http://dev.prestashop.com/svn/v1/branches/1.5.x@9010 b9a71923-0436-4b27-9f14-aed3839534dd
This commit is contained in:
lLefevre
2011-10-04 12:01:55 +00:00
parent e1d3f25007
commit a499af94bb
+5 -3
View File
@@ -866,7 +866,7 @@ class AdminControllerCore extends Controller
// move to form.tpl
$this->content .= '<br /><br /><a href="'.((Tools::getValue('back')) ? Tools::getValue('back') : self::$currentIndex.'&token='.$this->token).'"><img src="../img/admin/arrow2.gif" /> '.((Tools::getValue('back')) ? $this->l('Back') : $this->l('Back to list')).'</a><br />';
}
elseif ($this->display == 'list')
else if ($this->display == 'list')
{
$this->getList($this->context->language->id);
@@ -882,8 +882,10 @@ class AdminControllerCore extends Controller
$helper->shopLinkType = $this->shopLinkType;
$helper->identifier = $this->identifier;
$helper->token = $this->token;
$helper->_listSkipDelete = $this->_listSkipDelete;
if (isset($this->_listSkipDelete))
$helper->_listSkipDelete = $this->_listSkipDelete;
$this->content .= $helper->generateList($this->_list, $this->fieldsDisplay);
}
}