diff --git a/admin-dev/themes/default/template/controllers/manufacturers/helpers/view/view.tpl b/admin-dev/themes/default/template/controllers/manufacturers/helpers/view/view.tpl
index 7fe5e96b3..5c57c58ad 100644
--- a/admin-dev/themes/default/template/controllers/manufacturers/helpers/view/view.tpl
+++ b/admin-dev/themes/default/template/controllers/manufacturers/helpers/view/view.tpl
@@ -38,7 +38,7 @@
{foreach $addresses AS $addresse}
- | {$addresse.firstname} {$addresse.lastname} |
+ {$addresse.firstname} {$addresse.lastname}  |
|
diff --git a/controllers/admin/AdminManufacturersController.php b/controllers/admin/AdminManufacturersController.php
index 083b0bed5..80d6fc516 100644
--- a/controllers/admin/AdminManufacturersController.php
+++ b/controllers/admin/AdminManufacturersController.php
@@ -569,7 +569,12 @@ class AdminManufacturersControllerCore extends AdminController
{
if (!($manufacturer = $this->loadObject()))
return;
-
+
+ $this->toolbar_btn['new'] = array(
+ 'href' => $this->context->link->getAdminLink('AdminManufacturers').'&addaddress=1&id_manufacturer='.(int)$manufacturer->id,
+ 'desc' => $this->l('Add address')
+ );
+
$addresses = $manufacturer->getAddresses($this->context->language->id);
$products = $manufacturer->getProductsLite($this->context->language->id);
|