[-] BO : fixed bug #PSCFV-3437

git-svn-id: http://dev.prestashop.com/svn/v1/branches/1.5.x@16678 b9a71923-0436-4b27-9f14-aed3839534dd
This commit is contained in:
vAugagneur
2012-08-03 08:30:04 +00:00
parent d69c97f145
commit 4efb673969
@@ -188,7 +188,8 @@ class AdminManufacturersControllerCore extends AdminController
ON (cl.`id_country` = a.`id_country` AND cl.`id_lang` = '.(int)$this->context->language->id.') ';
$this->_join .= '
LEFT JOIN `'._DB_PREFIX_.'manufacturer` m
ON (a.`id_manufacturer` = m.`id_manufacturer`)';
ON (a.`id_manufacturer` = m.`id_manufacturer`)'.
Shop::addSqlAssociation('manufacturer', 'm');
$this->_where = 'AND a.`id_customer` = 0 AND a.`id_supplier` = 0 AND a.`id_warehouse` = 0';
$this->context->smarty->assign('title_list', $this->l('Manufacturers addresses:'));