Fixed the last value for general and exception of reportings

(cherry picked from commit 6897e421d8c9b99bd818ca679bdd807f6f58fe24)
This commit is contained in:
mdtrooper 2015-02-26 17:52:32 +01:00
parent 0a4414960b
commit 84a0e2baaf

View File

@ -5372,7 +5372,9 @@ function reporting_render_report_html_item ($content, $table, $report, $mini = f
$table1->head = array ();
$table1->head[0] = __('Agent');
$table1->head[1] = __('Module');
if ($content['period'] != 0) {
$table1->head[2] = __('Operation');
}
$table1->head[3] = __('Value');
$table1->style[0] = 'text-align: left';
$table1->style[1] = 'text-align: left';
@ -5469,6 +5471,7 @@ function reporting_render_report_html_item ($content, $table, $report, $mini = f
$data[0] = $agent_name[$i];
$data[1] = $module_name[$i];
if ($content['period'] != 0) {
switch ($operations[$i]) {
case 'sum':
$op = __('Summatory');
@ -5485,6 +5488,7 @@ function reporting_render_report_html_item ($content, $table, $report, $mini = f
break;
}
$data[2] = $op;
}
if ($d === false) {
$data[3] = '--';