[*] BO #PSFV-94 : Added AdminAttachmentsController

git-svn-id: http://dev.prestashop.com/svn/v1/branches/1.5.x@10090 b9a71923-0436-4b27-9f14-aed3839534dd
This commit is contained in:
lLefevre
2011-11-14 10:33:57 +00:00
parent 5119bb7355
commit b78b1a1a4c
7 changed files with 274 additions and 214 deletions
+3 -3
View File
@@ -449,14 +449,14 @@ class HelperListCore extends Helper
if (!array_key_exists('DeleteItem', self::$cache_lang))
self::$cache_lang['DeleteItem'] = $this->l('Delete item #', __CLASS__, true, false);
$tpl->assign(array(
$tpl->assign(array_merge($this->tpl_delete_link_vars, array(
'href' => $this->currentIndex.'&'.$this->identifier.'='.$id.'&delete'.$this->table.'&token='.($token != null ? $token : $this->token),
'confirm' => (!is_null($this->specificConfirmDelete) ? '\r'.$this->specificConfirmDelete : self::$cache_lang['DeleteItem'].$id.' ? '),
'action' => self::$cache_lang['Delete'],
));
'id' => $id,
)));
return $tpl->fetch();
}
/**