summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorsasha <sasha@97f52cf1-0a1b-0410-bd0e-c28be96e8082>2008-08-13 07:03:10 +0000
committersasha <sasha@97f52cf1-0a1b-0410-bd0e-c28be96e8082>2008-08-13 07:03:10 +0000
commitfff324e490695b15733e2c36e1948a18416bbacb (patch)
tree1b5836b7929512f700eddd6edb6876759dd097c6
parentbfd73c73a40c1e5e6515462ca36b16d19b8a8d30 (diff)
downloadzabbix-fff324e490695b15733e2c36e1948a18416bbacb.tar.gz
zabbix-fff324e490695b15733e2c36e1948a18416bbacb.tar.xz
zabbix-fff324e490695b15733e2c36e1948a18416bbacb.zip
- [DEV-200] Queue for proxies
git-svn-id: svn://svn.zabbix.com/trunk@5901 97f52cf1-0a1b-0410-bd0e-c28be96e8082
-rw-r--r--frontends/php/queue.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/frontends/php/queue.php b/frontends/php/queue.php
index ff57eb34..4222a6b9 100644
--- a/frontends/php/queue.php
+++ b/frontends/php/queue.php
@@ -118,7 +118,7 @@ include_once "include/page_header.php";
new CCol($sec_30[$type],($sec_30[$type])?"information":"normal"),
new CCol($sec_60[$type],($sec_60[$type])?"warning":"normal"),
new CCol($sec_300[$type],($sec_300[$type])?"average":"normal"),
- new CCol($sec_300[$type],($sec_600[$type])?"high":"normal"),
+ new CCol($sec_600[$type],($sec_600[$type])?"high":"normal"),
new CCol($sec_rest[$type],($sec_rest[$type])?"disaster":"normal")
);
@@ -169,7 +169,7 @@ include_once "include/page_header.php";
new CCol($sec_30[$db_proxy['hostid']], $sec_30[$db_proxy['hostid']] ? "information" : "normal"),
new CCol($sec_60[$db_proxy['hostid']], $sec_60[$db_proxy['hostid']] ? "warning" : "normal"),
new CCol($sec_300[$db_proxy['hostid']], $sec_300[$db_proxy['hostid']] ? "average" : "normal"),
- new CCol($sec_300[$db_proxy['hostid']], $sec_600[$db_proxy['hostid']] ? "high" : "normal"),
+ new CCol($sec_600[$db_proxy['hostid']], $sec_600[$db_proxy['hostid']] ? "high" : "normal"),
new CCol($sec_rest[$db_proxy['hostid']], $sec_rest[$db_proxy['hostid']] ? "disaster" : "normal")
);
$table->addRow($elements);
@@ -180,7 +180,7 @@ include_once "include/page_header.php";
new CCol($sec_30[0], $sec_30[0] ? 'information' : 'normal'),
new CCol($sec_60[0], $sec_60[0] ? 'warning' : 'normal'),
new CCol($sec_300[0], $sec_300[0] ? 'average' : 'normal'),
- new CCol($sec_300[0], $sec_600[0] ? 'high' : 'normal'),
+ new CCol($sec_600[0], $sec_600[0] ? 'high' : 'normal'),
new CCol($sec_rest[0], $sec_rest[0] ? 'disaster' : 'normal')
);
$table->addRow($elements);