mirror of
https://github.com/EGroupware/egroupware.git
synced 2025-01-03 04:29:28 +01:00
Admin - Fix group changes sometimes not showing properly in history
This commit is contained in:
parent
53db16cd24
commit
82065a25ca
@ -232,7 +232,7 @@ class admin_cmd_edit_group extends admin_cmd
|
|||||||
foreach($data['set'] as $name => $value)
|
foreach($data['set'] as $name => $value)
|
||||||
{
|
{
|
||||||
if ($data['old'][$name] == $value ||
|
if ($data['old'][$name] == $value ||
|
||||||
is_array($value) && count($value) == count(array_intersect($value, $data['old'][$name])))
|
is_array($value) && sort($value) && sort($data['old'][$name]) && $value == $data['old'][$name])
|
||||||
{
|
{
|
||||||
unset($data['old'][$name], $data['set'][$name]);
|
unset($data['old'][$name], $data['set'][$name]);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user