summaryrefslogtreecommitdiffstats
path: root/frontends/php/report1.php
diff options
context:
space:
mode:
authorjames_wells <james_wells@97f52cf1-0a1b-0410-bd0e-c28be96e8082>2005-11-02 03:41:33 +0000
committerjames_wells <james_wells@97f52cf1-0a1b-0410-bd0e-c28be96e8082>2005-11-02 03:41:33 +0000
commitb23f31b53d6c88c31e6142f9a21d3815a580114c (patch)
treec738e01687e0a55172ff25082c22ec0b06c6d44c /frontends/php/report1.php
parent8bbda1139ac3e396a1af764a3d3ca5d6fa4f7040 (diff)
downloadzabbix-b23f31b53d6c88c31e6142f9a21d3815a580114c.tar.gz
zabbix-b23f31b53d6c88c31e6142f9a21d3815a580114c.tar.xz
zabbix-b23f31b53d6c88c31e6142f9a21d3815a580114c.zip
Applied ServerByName patch:
misc/conf/zabbix_agentd.conf src/libs/zbxnet/security.c First pass at optimization of MySQL queries on reports page frontends/php/include/config.inc.php Fixed Groupid selection in triggers page (James) frontends/php/include/config.inc.php frontends/php/tr_status.php Fixed Update Profile in profiles page (James) frontends/php/include/profiles.inc.php Fixed Number Of Hosts in reports page (James) frontends/php/include/config.inc.php frontends/php/report1.php frontends/php/include/locales/de_de.inc.php frontends/php/include/locales/en_gb.inc.php frontends/php/include/locales/fr_fr.inc.php frontends/php/include/locales/it_it.inc.php frontends/php/include/locales/ja_jp.inc.php frontends/php/include/locales/lv_lv.inc.php frontends/php/include/locales/ru_ru.inc.php frontends/php/include/locales/sp_sp.inc.php git-svn-id: svn://svn.zabbix.com/trunk@2241 97f52cf1-0a1b-0410-bd0e-c28be96e8082
Diffstat (limited to 'frontends/php/report1.php')
-rw-r--r--frontends/php/report1.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/frontends/php/report1.php b/frontends/php/report1.php
index 04e32f36..f140ba65 100644
--- a/frontends/php/report1.php
+++ b/frontends/php/report1.php
@@ -53,7 +53,7 @@
table_row(array(S_NUMBER_OF_TRIGGERS_ENABLED_DISABLED,$stats["triggers_count"]."(".$stats["triggers_count_enabled"]."/".$stats["triggers_count_disabled"].")"),$col++);
table_row(array(S_NUMBER_OF_ITEMS_ACTIVE_TRAPPER,$stats["items_count"]."(".$stats["items_count_active"]."/".$stats["items_count_trapper"]."/".$stats["items_count_not_active"]."/".$stats["items_count_not_supported"].")"),$col++);
table_row(array(S_NUMBER_OF_USERS,$stats["users_count"]),$col++);
- table_row(array(S_NUMBER_OF_HOSTS_MONITORED,$stats["hosts_count"]."(".$stats["hosts_count_monitored"]."/".$stats["hosts_count_not_monitored"]."/".$stats["hosts_count_template"].")"),$col++);
+ table_row(array(S_NUMBER_OF_HOSTS_MONITORED,$stats["hosts_count"]."(".$stats["hosts_count_monitored"]."/".$stats["hosts_count_not_monitored"]."/".$stats["hosts_count_template"]."/".$stats["hosts_count_deleted"].")"),$col++);
table_end();
?>