From 70bb7de9b53273f752402b937da3d5c36af5a2e4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dr=C3=BFSs=27?= Date: Fri, 15 Mar 2013 16:51:55 +0100 Subject: [PATCH] [-] BO: fixed member "customer_id" to "id_customer" for address import in AdminImport --- controllers/admin/AdminImportController.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/controllers/admin/AdminImportController.php b/controllers/admin/AdminImportController.php index 9b512f529..f8eb332fc 100644 --- a/controllers/admin/AdminImportController.php +++ b/controllers/admin/AdminImportController.php @@ -2053,11 +2053,11 @@ class AdminImportControllerCore extends AdminController Tools::displayError('%1$s does not exist in database %2$s (ID: %3$s) cannot be saved'), Db::getInstance()->getMsgError(), $customer->email, - (int)$address->customer_id + (int)$address->id_customer ); } else - $this->errors[] = sprintf(Tools::displayError('The customer ID n.%d does not exist in the database (ID: %d) cannot be saved'), $address->customer_id); + $this->errors[] = sprintf(Tools::displayError('The customer ID n.%d does not exist in the database (ID: %d) cannot be saved'), $address->id_customer); } else {