// Fix share_datas in backoffice

git-svn-id: http://dev.prestashop.com/svn/v1/branches/1.5.x@8096 b9a71923-0436-4b27-9f14-aed3839534dd
This commit is contained in:
rMalie
2011-08-17 14:53:18 +00:00
parent 39d005f222
commit acfa8d8600
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -61,7 +61,7 @@ class AdminCustomers extends AdminTab
);
$this->shopLinkType = 'shop';
$this->shopShareDatas = true;
$this->shopShareDatas = Shop::SHARE_CUSTOMER;
$this->optionsList = array(
'general' => array(
+1 -1
View File
@@ -62,7 +62,7 @@ class AdminOrders extends AdminTab
'date_add' => array('title' => $this->l('Date'), 'width' => 35, 'align' => 'right', 'type' => 'datetime', 'filter_key' => 'a!date_add'),
'id_pdf' => array('title' => $this->l('PDF'), 'callback' => 'printPDFIcons', 'orderby' => false, 'search' => false));
$this->shopLinkType = 'shop';
$this->shopShareDatas = true;
$this->shopShareDatas = Shop::SHARE_ORDER;
parent::__construct();
}