diff --git a/pandora_console/ChangeLog b/pandora_console/ChangeLog index f1911fdb45..a79a2e5ac9 100644 --- a/pandora_console/ChangeLog +++ b/pandora_console/ChangeLog @@ -1,3 +1,9 @@ +2012-12-27 Hirofumi Kosaka + + * general/logon_ok.php: Fixed typo. (fixed a bug that the + number of "Alerts defined" at Pandora Main Page showed always "-") + Merged from branch 4.0. + 2012-12-26 Juan Manuel Ramon * include/functions_graph.php: Fixed typos. diff --git a/pandora_console/general/logon_ok.php b/pandora_console/general/logon_ok.php index 11ffb6d966..444205c207 100644 --- a/pandora_console/general/logon_ok.php +++ b/pandora_console/general/logon_ok.php @@ -131,7 +131,7 @@ $cells[5]["color"] = "#aaa"; $cells[5]["href"] = "index.php?sec=estado&sec2=operation/agentes/status_monitor&refr=60&status=3"; $cells[6][0] = __('Alerts defined'); -$cells[6][1] = $data["total_alerts"]; +$cells[6][1] = $data["monitor_alerts"]; $cells[6]["color"] = "#000"; $cells[6]["href"] = "index.php?sec=estado&sec2=operation/agentes/alerts_status&refr=60"; @@ -230,4 +230,4 @@ echo "
"; html_print_table ($table); echo "
"; echo ""; // activity -?> \ No newline at end of file +?>