mirror of
https://github.com/Piwigo/Piwigo.git
synced 2025-04-26 03:09:58 +03:00
fixes #1839 forget no usernames, not only performed_by
This commit is contained in:
parent
3b36ff0a91
commit
b08fd91edc
1 changed files with 6 additions and 1 deletions
|
@ -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++;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue