related to #1465 displaying real info in lines

This commit is contained in:
Matthieu Leproux
2021-09-06 16:27:01 +02:00
committed by plegall
parent 8d41d27258
commit 717213e6d4
3 changed files with 126 additions and 46 deletions
+3 -1
View File
@@ -867,6 +867,7 @@ SELECT
$user_string = '';
if (isset($username_of[$line['user_id']]))
{
$user_name = $username_of[$line['user_id']];
$user_string.= $username_of[$line['user_id']];
}
else
@@ -961,9 +962,10 @@ SELECT
array_push( $result,
array(
'DATE' => $line['date'],
'DATE' => format_date($line['date']),
'TIME' => $line['time'],
'USER' => $user_string,
'USERNAME' => $user_name,
'IP' => $line['IP'],
'IMAGE' => $image_string,
'TYPE' => $line['image_type'],