From 14cdca92d8f2c2d1afd8ef0aab64192a25af74c0 Mon Sep 17 00:00:00 2001 From: rMalie Date: Mon, 21 May 2012 09:13:23 +0000 Subject: [PATCH] // Remove 'multishop' => true from Employee and AttributeGroup --- classes/AttributeGroup.php | 1 - classes/Employee.php | 1 - 2 files changed, 2 deletions(-) diff --git a/classes/AttributeGroup.php b/classes/AttributeGroup.php index 5544ffbaf..b5515fa81 100644 --- a/classes/AttributeGroup.php +++ b/classes/AttributeGroup.php @@ -43,7 +43,6 @@ class AttributeGroupCore extends ObjectModel 'table' => 'attribute_group', 'primary' => 'id_attribute_group', 'multilang' => true, - 'multishop' => true, 'fields' => array( 'is_color_group' => array('type' => self::TYPE_BOOL, 'validate' => 'isBool'), 'group_type' => array('type' => self::TYPE_STRING), diff --git a/classes/Employee.php b/classes/Employee.php index 66f6b7ad2..c77236c01 100644 --- a/classes/Employee.php +++ b/classes/Employee.php @@ -78,7 +78,6 @@ class EmployeeCore extends ObjectModel public static $definition = array( 'table' => 'employee', 'primary' => 'id_employee', - 'multishop' => 'true', 'fields' => array( 'lastname' => array('type' => self::TYPE_STRING, 'validate' => 'isName', 'required' => true, 'size' => 32), 'firstname' => array('type' => self::TYPE_STRING, 'validate' => 'isName', 'required' => true, 'size' => 32),