From fff324e490695b15733e2c36e1948a18416bbacb Mon Sep 17 00:00:00 2001 From: sasha Date: Wed, 13 Aug 2008 07:03:10 +0000 Subject: - [DEV-200] Queue for proxies git-svn-id: svn://svn.zabbix.com/trunk@5901 97f52cf1-0a1b-0410-bd0e-c28be96e8082 --- frontends/php/queue.php | 6 +++--- 1 file 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); -- cgit