[-] BO : fixed bug #PSCFV-5501 - Can't edit Guest AccountAddress in Custumer -> Addresses

This commit is contained in:
vAugagneur
2012-11-29 18:16:56 +01:00
parent 317938d883
commit c8d63a7819
2 changed files with 5 additions and 4 deletions
@@ -307,7 +307,7 @@ class AdminAddressesControllerCore extends AdminController
if (Validate::isEmail(Tools::getValue('email')))
{
$customer = new Customer();
$customer->getByEmail(Tools::getValue('email'));
$customer->getByEmail(Tools::getValue('email'), null, false);
if (Validate::isLoadedObject($customer))
$_POST['id_customer'] = $customer->id;
else