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 96021a35d..00f822257 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
@@ -26,20 +26,23 @@
{extends file="helpers/view/view.tpl"}
{block name="override_tpl"}
-
-
{$manufacturer->name}
-
{l s='Total addresses'} {count($addresses)}
+
+
{/if}
{/foreach}
-
+
{/block}
diff --git a/controllers/admin/AdminManufacturersController.php b/controllers/admin/AdminManufacturersController.php
index 9ca07b529..f854ee81c 100644
--- a/controllers/admin/AdminManufacturersController.php
+++ b/controllers/admin/AdminManufacturersController.php
@@ -596,6 +596,9 @@ class AdminManufacturersControllerCore extends AdminController
'href' => $this->context->link->getAdminLink('AdminManufacturers').'&addaddress=1&id_manufacturer='.(int)$manufacturer->id,
'desc' => $this->l('Add address')
);
+
+ $this->toolbar_title = is_array($this->breadcrumbs) ? array_unique($this->breadcrumbs) : array($this->breadcrumbs);
+ $this->toolbar_title[] = $manufacturer->name;
$addresses = $manufacturer->getAddresses($this->context->language->id);