diff options
| author | hugetoad <hugetoad@97f52cf1-0a1b-0410-bd0e-c28be96e8082> | 2004-09-10 17:47:32 +0000 |
|---|---|---|
| committer | hugetoad <hugetoad@97f52cf1-0a1b-0410-bd0e-c28be96e8082> | 2004-09-10 17:47:32 +0000 |
| commit | f7f74958b31cb3c8009d5946497911bfcf00cac0 (patch) | |
| tree | 4555db9646840429880875d36cae0f8b0de13b2d /frontends/php/queue.php | |
| parent | d037e4b58b4c81f46d68c1dab66c22e130599d35 (diff) | |
| download | zabbix-f7f74958b31cb3c8009d5946497911bfcf00cac0.tar.gz zabbix-f7f74958b31cb3c8009d5946497911bfcf00cac0.tar.xz zabbix-f7f74958b31cb3c8009d5946497911bfcf00cac0.zip | |
- added support for custom multiplier (Alexei)
- added column items.formula (Alexei)
- added support of SNMPv3 (Alexei)
- added columns snmpv3_* to table items (Alexei)
git-svn-id: svn://svn.zabbix.com/trunk@1420 97f52cf1-0a1b-0410-bd0e-c28be96e8082
Diffstat (limited to 'frontends/php/queue.php')
| -rw-r--r-- | frontends/php/queue.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/frontends/php/queue.php b/frontends/php/queue.php index d98422d5..5c404a69 100644 --- a/frontends/php/queue.php +++ b/frontends/php/queue.php @@ -41,9 +41,9 @@ <?php $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 i.type not in (2) 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 "<table border=0 width=100% bgcolor='#AAAAAA' cellspacing=1 cellpadding=3>"; echo "\n"; - echo "<tr><td><b>".S_NEXT_CHECK."</b></td><td><b>".S_HOST."</b></td><td><b>".S_DESCRIPTION."</b></td></tr>"; + echo "<tr bgcolor='#CCCCCC'><td><b>".S_NEXT_CHECK."</b></td><td><b>".S_HOST."</b></td><td><b>".S_DESCRIPTION."</b></td></tr>"; echo "\n"; $col=0; while($row=DBfetch($result)) |
