From c68da1de83f58112329c65edf3986d47d5d18e29 Mon Sep 17 00:00:00 2001 From: mdtrooper Date: Fri, 24 Jul 2015 15:35:36 +0200 Subject: [PATCH] Fixed the numeric format of failed % in report. --- pandora_console/include/functions_reporting.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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);