[-] BO : fix #PSCFV-3278 : add a parameter id_shop in a method Mail::send() && normalize

git-svn-id: http://dev.prestashop.com/svn/v1/branches/1.5.x@16549 b9a71923-0436-4b27-9f14-aed3839534dd
This commit is contained in:
lLefevre
2012-07-24 14:13:11 +00:00
parent 096bc90802
commit f2233e08d0
6 changed files with 108 additions and 75 deletions
+8 -1
View File
@@ -667,7 +667,14 @@ class CustomerCore extends ObjectModel
Mail::l('Your guest account has been transformed to customer account', (int)$id_lang),
$vars,
$this->email,
$this->firstname.' '.$this->lastname
$this->firstname.' '.$this->lastname,
null,
null,
null,
null,
_PS_THEME_DIR_,
false,
(int)$this->id_shop
);
return true;
}