diff --git a/pandora_console/include/functions_reporting.php b/pandora_console/include/functions_reporting.php old mode 100755 new mode 100644 index 83e6b2c9a6..cc5e0fdd72 --- a/pandora_console/include/functions_reporting.php +++ b/pandora_console/include/functions_reporting.php @@ -3982,7 +3982,7 @@ function reporting_general($report, $content) { if (modules_is_disable_agent($row['id_agent_module']) || modules_is_not_init($row['id_agent_module'])) { - + if (is_metaconsole()) { //Restore db connection metaconsole_restore_db(); @@ -4180,7 +4180,8 @@ function reporting_general($report, $content) { $data['value'] = $d; } else { - $data['value'] = format_for_graph($d, 2) . " " . + $data['value'] = $d; + $data['formated_value'] = format_for_graph($d, 2) . " " . $units[$i]; } } diff --git a/pandora_console/include/functions_reporting_html.php b/pandora_console/include/functions_reporting_html.php old mode 100755 new mode 100644 index ef78747cd9..b1f60d3db1 --- a/pandora_console/include/functions_reporting_html.php +++ b/pandora_console/include/functions_reporting_html.php @@ -1727,13 +1727,13 @@ function reporting_html_general(&$table, $item) { $row['agent'], $row['module'], $row['operator'], - $row['value']); + $row['formated_value']); } else { $table1->data[] = array( $row['agent'], $row['module'], - $row['value']); + $row['formated_value']); } } break;