From 3557e4eb378ed3506ebc6dd74581d419bc4fcbf5 Mon Sep 17 00:00:00 2001 From: Gustavo Novaro <gnovaro@users.noreply.github.com> Date: Fri, 23 Dec 2016 12:40:13 -0300 Subject: [PATCH] Var to public --- htdocs/user/class/usergroup.class.php | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/htdocs/user/class/usergroup.class.php b/htdocs/user/class/usergroup.class.php index 575fdadebe2..4f96f46f251 100644 --- a/htdocs/user/class/usergroup.class.php +++ b/htdocs/user/class/usergroup.class.php @@ -38,20 +38,20 @@ class UserGroup extends CommonObject public $table_element='usergroup'; 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 * @see name */ - var $nom; // Name of group - var $globalgroup; // Global group - var $datec; // Creation date of group - var $datem; // Modification date of group - var $members=array(); // Array of users + public $nom; // Name of group + public $globalgroup; // Global group + public $datec; // Creation date of group + public $datem; // Modification date of group + public $members=array(); // Array of users 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 /** -- GitLab