mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-12-27 09:09:04 +01:00
This should update the memberuid field for groups even when changing account_id
This commit is contained in:
parent
ed19a7d7cd
commit
e86fdd35fd
@ -246,7 +246,11 @@
|
||||
$entry["memberuid"] = "";
|
||||
for ($i=0;$i<count($members);$i++)
|
||||
{
|
||||
$entry["memberuid"][$i] = $this->id2name($members[$i]['account_id']);
|
||||
$currname = $this->id2name($members[$i]['account_id']);
|
||||
if (!$this->isin_array($currname,$entry["memberuid"]))
|
||||
{
|
||||
$entry["memberuid"][$i] = $currname;
|
||||
}
|
||||
}
|
||||
}
|
||||
// Accounts
|
||||
|
Loading…
Reference in New Issue
Block a user