Fix: wrong SPECIMEN value

This commit is contained in:
Regis Houssin 2017-05-24 11:27:27 +02:00
parent 66f6224321
commit a3d8da0a73

View File

@ -833,7 +833,11 @@ class UserGroup extends CommonObject
$this->note='This is a note'; $this->note='This is a note';
$this->datec=time(); $this->datec=time();
$this->datem=time(); $this->datem=time();
$this->members=array($user->id); // Members of this group is just me
// Members of this group is just me
$this->members=array(
$user->id => $user
);
} }
} }