This should update the memberuid field for groups even when changing account_id

This commit is contained in:
Miles Lott 2001-04-07 02:44:02 +00:00
parent ed19a7d7cd
commit e86fdd35fd

View File

@ -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