From 28a09ed13e41ddbe5e30d63e92a1f5fb3395ef89 Mon Sep 17 00:00:00 2001 From: osmiy Date: Mon, 23 Oct 2006 07:34:27 +0000 Subject: - developed group permission system (Eugene) git-svn-id: svn://svn.zabbix.com/trunk@3371 97f52cf1-0a1b-0410-bd0e-c28be96e8082 --- frontends/php/report1.php | 27 +++++++++------------------ 1 file changed, 9 insertions(+), 18 deletions(-) (limited to 'frontends/php/report1.php') diff --git a/frontends/php/report1.php b/frontends/php/report1.php index df230d87..80ddafc9 100644 --- a/frontends/php/report1.php +++ b/frontends/php/report1.php @@ -19,24 +19,19 @@ **/ ?> - +include_once "include/page_header.php"; +?> - AddRow(array(S_ZABBIX_SERVER_IS_RUNNING,new CSpan($status["zabbix_server"],$style))); + $table->AddRow(array(S_ZABBIX_SERVER_IS_RUNNING,new CSpan($status["zabbix_server"], ($status["zabbix_server"] == S_YES ? "off" : "on")))); $table->AddRow(array(S_VALUES_STORED,$status["history_count"])); $table->AddRow(array(S_TRENDS_STORED,$status["trends_count"])); $table->AddRow(array(S_NUMBER_OF_HOSTS,array($status["hosts_count"]."(", @@ -70,11 +60,12 @@ new CSpan($status["triggers_count_unknown"],"unknown"),"/", new CSpan($status["triggers_count_off"],"off"),"]" ))); - $table->AddRow(array(S_NUMBER_OF_ALARMS,$status["alarms_count"])); + $table->AddRow(array(S_NUMBER_OF_ALARMS,$status["events_count"])); $table->AddRow(array(S_NUMBER_OF_ALERTS,$status["alerts_count"])); $table->Show(); ?> - -- cgit