// Fix #PSCFV-4387

git-svn-id: http://dev.prestashop.com/svn/v1/branches/1.5.x@17561 b9a71923-0436-4b27-9f14-aed3839534dd
This commit is contained in:
rGaillard
2012-09-26 13:00:22 +00:00
parent 17058c36db
commit 5a57d5851c
-11
View File
@@ -417,19 +417,8 @@ class AuthControllerCore extends FrontController
else
{
if (!$customer->is_guest)
{
$customer->cleanGroups();
// we add the customer in the default customer group
$customer->addGroups(array((int)Configuration::get('PS_CUSTOMER_GROUP')));
if (!$this->sendConfirmationMail($customer))
$this->errors[] = Tools::displayError('Cannot send e-mail');
}
else
{
$customer->cleanGroups();
// we add the guest customer in the guest customer group
$customer->addGroups(array((int)Configuration::get('PS_GUEST_GROUP')));
}
$this->updateContext($customer);