From e5c765ac713664bdae99dac1c975f4a8b7999c32 Mon Sep 17 00:00:00 2001 From: osmiy Date: Wed, 15 Nov 2006 12:53:32 +0000 Subject: - improved stricted PHP5 supporting (Eugene) git-svn-id: svn://svn.zabbix.com/trunk@3486 97f52cf1-0a1b-0410-bd0e-c28be96e8082 --- frontends/php/queue.php | 4 ---- 1 file changed, 4 deletions(-) (limited to 'frontends/php/queue.php') diff --git a/frontends/php/queue.php b/frontends/php/queue.php index 541a00bc..e2211bde 100644 --- a/frontends/php/queue.php +++ b/frontends/php/queue.php @@ -79,10 +79,6 @@ include_once "include/page_header.php"; while($row=DBfetch($result)) { - if(!check_right("Host","R",$row["hostid"])) - { - continue; - } if($now-$row["nextcheck"]<=5) $sec_5[$row["type"]]++; elseif($now-$row["nextcheck"]<=10) $sec_10[$row["type"]]++; elseif($now-$row["nextcheck"]<=30) $sec_30[$row["type"]]++; -- cgit