#13465 changed name in list report

This commit is contained in:
Daniel Cebrian 2024-05-03 14:51:58 +02:00
parent 130230549f
commit 17c303ff97
1 changed files with 5 additions and 1 deletions

View File

@ -1801,7 +1801,11 @@ function reporting_html_event_report_group($table, $item, $pdf=0)
'id_user',
$event['id_usuario']
);
$data[] = io_safe_output($user_name);
if (isset($event['id_usuario']) === true && empty($event['id_usuario']) === false) {
$data[] = io_safe_output($user_name).' ('.$event['id_usuario'].')';
} else {
$data[] = '';
}
}
if ($item['show_summary_group']) {