summaryrefslogtreecommitdiffstats
path: root/frontends/php/queue.html
diff options
context:
space:
mode:
authorhugetoad <hugetoad@97f52cf1-0a1b-0410-bd0e-c28be96e8082>2001-12-20 13:12:30 +0000
committerhugetoad <hugetoad@97f52cf1-0a1b-0410-bd0e-c28be96e8082>2001-12-20 13:12:30 +0000
commit3e2c4681abe924383ba2d822c842b9f4a4509a6a (patch)
tree085fbedb3756dffc2f1606d5524b973f1e22ca3f /frontends/php/queue.html
parent6606dc9415bf59332c095379ae9ba7901158ef3e (diff)
Minor fix in queue.html
git-svn-id: svn://svn.zabbix.com/trunk@269 97f52cf1-0a1b-0410-bd0e-c28be96e8082
Diffstat (limited to 'frontends/php/queue.html')
-rw-r--r--frontends/php/queue.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/frontends/php/queue.html b/frontends/php/queue.html
index 62b59da8..78960857 100644
--- a/frontends/php/queue.html
+++ b/frontends/php/queue.html
@@ -15,7 +15,7 @@
?>
<?
$now=time();
- $result=DBselect("select i.itemid, i.nextcheck, i.description, h.host from items i,hosts h where i.status in (0,2) 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 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");
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>";