fixed wrong percentage in meta availability report

This commit is contained in:
alejandro-campos 2018-07-17 13:45:38 +02:00
parent 74eecf1a96
commit 4cbd80a3b4
1 changed files with 1 additions and 1 deletions

View File

@ -2432,7 +2432,7 @@ function reporting_html_availability(&$table, $item) {
else
$table_row[] = '--';
$table_row[] = '<span style="font-size: 1.2em; font-weight:bold;">' . sla_truncate($row['SLA'] * 100, $config['graph_precision']). '%</span>';
$table_row[] = '<span style="font-size: 1.2em; font-weight:bold;">' . sla_truncate($row['SLA'], $config['graph_precision']). '%</span>';
$table_row2 = array();
$table_row2[] = $row['agent'];