From 24d8ace4d797a37a036a8eacc534aa832e9ae5a9 Mon Sep 17 00:00:00 2001 From: enriquecd Date: Tue, 20 Dec 2016 20:03:59 +0100 Subject: [PATCH] Fix bug events count in events reports / 2 - #4239 (cherry picked from commit fe598ae78cb181021d3a0c2922ee63d090e548e2) --- pandora_console/include/functions_reporting_html.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pandora_console/include/functions_reporting_html.php b/pandora_console/include/functions_reporting_html.php index 3d0f323756..7ec458ab61 100644 --- a/pandora_console/include/functions_reporting_html.php +++ b/pandora_console/include/functions_reporting_html.php @@ -133,6 +133,9 @@ function reporting_html_print_report($report, $mini = false) { $table->data['description_row']['description'] = $item['description']." - Total events: ".$item["total_events"]; } + else{ + $table->data['description_row']['description'] = $item["description"]; + } $table->colspan['description_row']['description'] = 3;