diff --git a/controllers/ManufacturerController.php b/controllers/ManufacturerController.php index e45a1a1ad..5ecc6e8bb 100644 --- a/controllers/ManufacturerController.php +++ b/controllers/ManufacturerController.php @@ -93,7 +93,7 @@ class ManufacturerControllerCore extends FrontController $manufacturers = Manufacturer::getManufacturers(true, $this->context->language->id, true, $this->p, $this->n, false, $id_current_group_shop); $imgDir = _PS_MANU_IMG_DIR_; foreach ($data AS &$item) - $row['image'] = (!file_exists(_PS_MANU_IMG_DIR_.'/'.$row['id_manufacturer'].'-medium.jpg')) ? $this->context->language->iso_code.'-default' : $row['id_manufacturer']; + $item['image'] = (!file_exists(_PS_MANU_IMG_DIR_.'/'.$item['id_manufacturer'].'-medium.jpg')) ? $this->context->language->iso_code.'-default' : $item['id_manufacturer']; $this->context->smarty->assign(array( 'pages_nb' => ceil($nbProducts / (int)($this->n)), diff --git a/controllers/SupplierController.php b/controllers/SupplierController.php index 0a64e547f..01f9a9e53 100644 --- a/controllers/SupplierController.php +++ b/controllers/SupplierController.php @@ -97,7 +97,7 @@ class SupplierControllerCore extends FrontController $suppliers = Supplier::getSuppliers(true, $this->context->language->id, true, $this->p, $this->n); foreach ($suppliers AS &$row) - $row['image'] = (!file_exists(_PS_SUPP_IMG_DIR_.'/'.$row['id_supplier'].'-medium.jpg')) ? $this->context->language->iso_code.'-default' : $item['id_supplier'];; + $row['image'] = (!file_exists(_PS_SUPP_IMG_DIR_.'/'.$row['id_supplier'].'-medium.jpg')) ? $this->context->language->iso_code.'-default' : $row['id_supplier'];; $this->context->smarty->assign(array( 'pages_nb' => ceil($nbProducts / (int)$this->n),