summaryrefslogtreecommitdiffstats
path: root/frontends/php/queue.php
diff options
context:
space:
mode:
authorhugetoad <hugetoad@97f52cf1-0a1b-0410-bd0e-c28be96e8082>2002-07-05 06:26:43 +0000
committerhugetoad <hugetoad@97f52cf1-0a1b-0410-bd0e-c28be96e8082>2002-07-05 06:26:43 +0000
commit5a53941baf13fe282822375362014ca57208d964 (patch)
treee69ac9d1d933979e9779f148af2a922f445c0849 /frontends/php/queue.php
parent661ade3a11af99d484b35685ce33be708a8e8e0d (diff)
downloadzabbix-5a53941baf13fe282822375362014ca57208d964.tar.gz
zabbix-5a53941baf13fe282822375362014ca57208d964.tar.xz
zabbix-5a53941baf13fe282822375362014ca57208d964.zip
Many improvements for PostgreSQL support.
git-svn-id: svn://svn.zabbix.com/trunk@423 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 8dcbb24a..786f3936 100644
--- a/frontends/php/queue.php
+++ b/frontends/php/queue.php
@@ -20,7 +20,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=0 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 and i.key_<>'status' 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>";