diff --git a/pandora_console/include/functions_events.php b/pandora_console/include/functions_events.php index a6f0f83752..b398df5553 100644 --- a/pandora_console/include/functions_events.php +++ b/pandora_console/include/functions_events.php @@ -4682,6 +4682,16 @@ function events_page_general($event) $table_general->data[] = $data; + $data = []; + $data[0] = __('Module custom ID'); + if ($event['module_custom_id'] != '') { + $data[1] = $event['module_custom_id']; + } else { + $data[1] = ''.__('N/A').''; + } + + $table_general->data[] = $data; + $table_data = $table_general->data; if (is_array($table_data)) { $table_data_total = count($table_data);