[+] FO : now you can choose if at least on phone number is required
git-svn-id: http://dev.prestashop.com/svn/v1/branches/1.5.x@17452 b9a71923-0436-4b27-9f14-aed3839534dd
This commit is contained in:
@@ -124,7 +124,7 @@ class AddressControllerCore extends FrontController
|
||||
$this->errors[] = Tools::displayError('Invalid token');
|
||||
|
||||
// Check phone
|
||||
if (!Tools::getValue('phone') && !Tools::getValue('phone_mobile'))
|
||||
if (Configuration::get('PS_ONE_PHONE_AT_LEAST') && !Tools::getValue('phone') && !Tools::getValue('phone_mobile'))
|
||||
$this->errors[] = Tools::displayError('You must register at least one phone number');
|
||||
if ($address->id_country)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user