2016-01-16 1 views

Répondre

1

Vous pouvez essayer ceci:

Dans catalog/controller/checkout/register.php

find (ligne 149):

if ((utf8_strlen($this->request->post['email']) > 96) || !filter_var($this->request->post['email'], FILTER_VALIDATE_EMAIL)) { 
    $json['error']['email'] = $this->language->get('error_email'); 
} 

et en commentaire.

Dans catalog/controller/checkout/guest.php

find (ligne 203):

if ((utf8_strlen($this->request->post['email']) > 96) || !filter_var($this->request->post['email'], FILTER_VALIDATE_EMAIL)) { 
    $json['error']['email'] = $this->language->get('error_email'); 
} 

et en commentaire.

J'espère que cela vous aidera.

+0

Salut @IvanIvanov - bienvenue à Stack Overflow! J'ai modifié votre question pour dire "commenter" plutôt que d'afficher l'ensemble du code commenté. –