// Fix #PSCFV-4387

This commit is contained in:
rGaillard
2012-09-26 13:00:22 +00:00
parent 553fb6f42a
commit d6336d4462
-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);