Merge pull request #6220 from gnovaro/patch-2

Var to public
This commit is contained in:
Laurent Destailleur 2016-12-31 17:26:40 +01:00 committed by GitHub
commit 088a948e5a

View File

@ -38,20 +38,20 @@ class UserGroup extends CommonObject
public $table_element='usergroup'; public $table_element='usergroup';
protected $ismultientitymanaged = 1; // 0=No test on entity, 1=Test with field entity, 2=Test with link by societe protected $ismultientitymanaged = 1; // 0=No test on entity, 1=Test with field entity, 2=Test with link by societe
var $entity; // Entity of group public $entity; // Entity of group
/** /**
* @deprecated * @deprecated
* @see name * @see name
*/ */
var $nom; // Name of group public $nom; // Name of group
var $globalgroup; // Global group public $globalgroup; // Global group
var $datec; // Creation date of group public $datec; // Creation date of group
var $datem; // Modification date of group public $datem; // Modification date of group
var $members=array(); // Array of users public $members=array(); // Array of users
private $_tab_loaded=array(); // Array of cache of already loaded permissions private $_tab_loaded=array(); // Array of cache of already loaded permissions
var $oldcopy; // To contains a clone of this when we need to save old properties of object public $oldcopy; // To contains a clone of this when we need to save old properties of object
/** /**