fixes #1839 forget no usernames, not only performed_by

This commit is contained in:
plegall 2022-12-21 19:02:52 +01:00
parent 3b36ff0a91
commit b08fd91edc

View file

@ -518,7 +518,12 @@ SELECT
'counter' => 1,
);
@$user_ids[ $row['performed_by'] ]++;
$user_ids[ $row['performed_by'] ] = 1;
if ('user' == $row['object'])
{
$user_ids[ $row['object_id'] ] = 1;
}
$current_key = $line_key;
$line_id++;
}