summaryrefslogtreecommitdiffstats
path: root/frontends/php/queue.php
diff options
context:
space:
mode:
authorhugetoad <hugetoad@97f52cf1-0a1b-0410-bd0e-c28be96e8082>2002-05-29 12:51:55 +0000
committerhugetoad <hugetoad@97f52cf1-0a1b-0410-bd0e-c28be96e8082>2002-05-29 12:51:55 +0000
commit6123a83fc22bdecc1dc64d1c0b42d607ef6bff2a (patch)
tree283ce953784a91445a75cfab0218ff66aac52925 /frontends/php/queue.php
parent6bb42daaa056ab6abf619ab1fe765bec8e75e6f7 (diff)
downloadzabbix-6123a83fc22bdecc1dc64d1c0b42d607ef6bff2a.tar.gz
zabbix-6123a83fc22bdecc1dc64d1c0b42d607ef6bff2a.tar.xz
zabbix-6123a83fc22bdecc1dc64d1c0b42d607ef6bff2a.zip
- unreachable parameters will not be shown in Queue (Alexei)
git-svn-id: svn://svn.zabbix.com/trunk@393 97f52cf1-0a1b-0410-bd0e-c28be96e8082
Diffstat (limited to 'frontends/php/queue.php')
-rw-r--r--frontends/php/queue.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/frontends/php/queue.php b/frontends/php/queue.php
index b2692048..21e6c8c5 100644
--- a/frontends/php/queue.php
+++ b/frontends/php/queue.php
@@ -23,7 +23,7 @@
?>
<?
$now=time();
- $result=DBselect("select i.itemid, i.nextcheck, i.description, h.host,h.hostid from items i,hosts h where i.status=0 and h.status in (0,2) and i.hostid=h.hostid and i.nextcheck<$now order by i.nextcheck");
+ $result=DBselect("select i.itemid, i.nextcheck, i.description, h.host,h.hostid from items i,hosts h where i.status=0 and h.status=0 and i.hostid=h.hostid and i.nextcheck<$now order by i.nextcheck");
echo "<table border=0 width=100% bgcolor='#CCCCCC' cellspacing=1 cellpadding=3>";
echo "\n";
echo "<tr><td><b>Next time to check</b></td><td><b>Host</b></td><td><b>Description</b></td></tr>";