// Fix share_datas in backoffice

This commit is contained in:
rMalie
2011-08-17 14:53:18 +00:00
parent c28051ae93
commit 34e0282c72
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();
}