From e3693c12ab9e2bf934e1cb8194c1be5fe3650d86 Mon Sep 17 00:00:00 2001 From: osmiy Date: Tue, 30 Jan 2007 15:58:48 +0000 Subject: - fixed permissions for triggers (Eugene) - developed 'mass update' functionality for items (Eugene) git-svn-id: svn://svn.zabbix.com/trunk@3772 97f52cf1-0a1b-0410-bd0e-c28be96e8082 --- frontends/php/queue.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'frontends/php/queue.php') diff --git a/frontends/php/queue.php b/frontends/php/queue.php index 48e56d45..b0a8753f 100644 --- a/frontends/php/queue.php +++ b/frontends/php/queue.php @@ -56,7 +56,7 @@ include_once "include/page_header.php"; $result = DBselect("select i.itemid,i.nextcheck,i.description,i.key_,i.type,h.host,h.hostid ". " from items i,hosts h ". - " where i.status=".ITEM_STATUS_ACTIVE." and i.type not in (".ITEM_TYPE_TRAPPER.") ". + " where i.status=".ITEM_STATUS_ACTIVE." and i.type not in (".ITEM_TYPE_TRAPPER.",".ITEM_TYPE_HTTPTEST.") ". " and ((h.status=".HOST_STATUS_MONITORED." and h.available != ".HOST_AVAILABLE_FALSE.") ". " or (h.status=".HOST_STATUS_MONITORED." and h.available=".HOST_AVAILABLE_FALSE." and h.disable_until<=$now)) ". " and i.hostid=h.hostid and i.nextcheck<$now and i.key_ not in ('status','icmpping','icmppingsec','zabbix[log]') ". -- cgit