From f00fe31fcc47a4e7e1f4a9970cbf83fc47a19b54 Mon Sep 17 00:00:00 2001 From: vChabot Date: Wed, 11 Jan 2012 09:53:47 +0000 Subject: [PATCH] [-] BO : BugFix : #PSTEST-339 ; remove the ID from the confirm popup message when deleting an item git-svn-id: http://dev.prestashop.com/svn/v1/branches/1.5.x@12337 b9a71923-0436-4b27-9f14-aed3839534dd --- classes/helper/HelperList.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/classes/helper/HelperList.php b/classes/helper/HelperList.php index d4dd9fc78..b94cf151e 100644 --- a/classes/helper/HelperList.php +++ b/classes/helper/HelperList.php @@ -460,7 +460,7 @@ class HelperListCore extends Helper $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'].$name.' \n'.$this->l('ID:', 'helper').' '.$id), + 'confirm' => (!is_null($this->specificConfirmDelete) ? '\r'.$this->specificConfirmDelete : self::$cache_lang['DeleteItem'].$name), 'action' => self::$cache_lang['Delete'], 'id' => $id, )));