From 4b797bf77033c11af92fef2aaae25ec1cc3ebb94 Mon Sep 17 00:00:00 2001 From: hugetoad Date: Mon, 24 Jun 2002 18:07:18 +0000 Subject: - check permissions for Availability report (Alexei) git-svn-id: svn://svn.zabbix.com/trunk@415 97f52cf1-0a1b-0410-bd0e-c28be96e8082 --- frontends/php/report2.php | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'frontends/php/report2.php') diff --git a/frontends/php/report2.php b/frontends/php/report2.php index a27a5970..e7519084 100644 --- a/frontends/php/report2.php +++ b/frontends/php/report2.php @@ -32,6 +32,10 @@ $col=0; while($row=DBfetch($result)) { + if(!check_right_on_trigger("R",$row["triggerid"])) + { + continue; + } if($lasthost!=$row["host"]) { if($lasthost!="") -- cgit