// Do not redirect to account creation when email does not exist

This commit is contained in:
rGaillard
2012-10-23 12:43:18 +00:00
parent 5102715f36
commit 47f8213ece
+1 -11
View File
@@ -280,17 +280,7 @@ class AuthControllerCore extends FrontController
{
// Handle brute force attacks
sleep(1);
if (!Customer::customerExists($email))
{
$this->create_account = true;
$this->context->smarty->assign('email_create', Tools::safeOutput($email));
$_POST['email'] = $email;
if ($this->ajax)
$this->errors[] = Tools::displayError('Authentication failed');
}
else
$this->errors[] = Tools::displayError('Authentication failed');
$this->errors[] = Tools::displayError('Authentication failed');
}
else
{