summaryrefslogtreecommitdiffstats
path: root/frontends/php/report2.html
diff options
context:
space:
mode:
authorhugetoad <hugetoad@97f52cf1-0a1b-0410-bd0e-c28be96e8082>2001-11-22 16:24:31 +0000
committerhugetoad <hugetoad@97f52cf1-0a1b-0410-bd0e-c28be96e8082>2001-11-22 16:24:31 +0000
commit39b87416ba66c4466af16dbd5afd5edd1e9f5cef (patch)
tree86d169affe06b77cf4aece34ea5cbbca7a27378f /frontends/php/report2.html
parentbb9bcf963db518e1b439447746d053ef6dc8907c (diff)
downloadzabbix-39b87416ba66c4466af16dbd5afd5edd1e9f5cef.tar.gz
zabbix-39b87416ba66c4466af16dbd5afd5edd1e9f5cef.tar.xz
zabbix-39b87416ba66c4466af16dbd5afd5edd1e9f5cef.zip
- character '-' can be used to form server name (Alexei)
- fixed dependencies in functions that delete information for zabbix tables (Alexei) - fixed select statement for Network Maps. Host status is correct. (Alexei) - availability report will not show not monitored hosts (Alexei) - "maxumum" changed to "maximum" in actions.html (Alexei) - "have been restarted" changed to "has been ..." (Alexei) git-svn-id: svn://svn.zabbix.com/trunk@249 97f52cf1-0a1b-0410-bd0e-c28be96e8082
Diffstat (limited to 'frontends/php/report2.html')
-rw-r--r--frontends/php/report2.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/frontends/php/report2.html b/frontends/php/report2.html
index 2011ac7d..6582199e 100644
--- a/frontends/php/report2.html
+++ b/frontends/php/report2.html
@@ -26,7 +26,7 @@
<?
- $result=DBselect("select h.hostid,h.host,t.triggerid,t.expression,t.description,t.istrue from triggers t,hosts h,items i,functions f where f.itemid=i.itemid and h.hostid=i.hostid and t.istrue!=2 and t.triggerid=f.triggerid order by h.host,t.description");
+ $result=DBselect("select h.hostid,h.host,t.triggerid,t.expression,t.description,t.istrue from triggers t,hosts h,items i,functions f where f.itemid=i.itemid and h.hostid=i.hostid and t.istrue!=2 and t.triggerid=f.triggerid and h.status=0 order by h.host,t.description");
$lasthost="";
$col=0;
for($i=0;$i<DBnum_rows($result);$i++)