diff --git a/pandora_console/include/functions_reporting.php b/pandora_console/include/functions_reporting.php index b10a881e54..73555f8f47 100755 --- a/pandora_console/include/functions_reporting.php +++ b/pandora_console/include/functions_reporting.php @@ -5757,7 +5757,7 @@ function reporting_render_report_html_item ($content, $table, $report, $mini = f $row['checks'] = format_numeric($count_checks, 0); $row['ok'] = $percent_ok . " %"; - $row['fail'] = $percent_fail . " %"; + $row['fail'] = format_numeric($percent_fail, 2) . " %"; $row['failed'] = format_numeric($percent_fail * $count_checks / 100, 0);