Fixed the numeric format of failed % in report.

This commit is contained in:
mdtrooper 2015-07-24 15:35:36 +02:00
parent 032acc5cb3
commit c68da1de83
1 changed files with 1 additions and 1 deletions

View File

@ -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);