mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-07 16:44:20 +01:00
"fixed only first row got loged, as array_diff keys the index --> renumbering with array_values"
This commit is contained in:
parent
11d0e8caec
commit
12c7f02be3
@ -266,11 +266,12 @@ abstract class bo_tracking
|
||||
{
|
||||
self::compact_1_N_relation($data[$name],$status);
|
||||
self::compact_1_N_relation($old[$name],$status);
|
||||
$added = array_diff($data[$name],$old[$name]);
|
||||
$removed = array_diff($old[$name],$data[$name]);
|
||||
$added = array_values(array_diff($data[$name],$old[$name]));
|
||||
$removed = array_values(array_diff($old[$name],$data[$name]));
|
||||
$n = max(array(count($added),count($removed)));
|
||||
for($i = 0; $i < $n; ++$i)
|
||||
{
|
||||
//error_log(__METHOD__."() $i: historylog->add('$name',data['$this->id_field']={$data[$this->id_field]},".array2string($added[$i]).','.array2string($removed[$i]));
|
||||
$this->historylog->add($name,$data[$this->id_field],$added[$i],$removed[$i]);
|
||||
}
|
||||
}
|
||||
@ -322,6 +323,7 @@ abstract class bo_tracking
|
||||
$changed_fields[] = $name;
|
||||
}
|
||||
}
|
||||
//error_log(__METHOD__."() changed_fields=".array2string($changed_fields));
|
||||
return $changed_fields;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user