From fefeed0a362b96cfcbc252adfa1e41b9035d8b9e Mon Sep 17 00:00:00 2001 From: hugetoad Date: Tue, 7 May 2002 10:41:18 +0000 Subject: - added default user "guest" (Alexei) - more support for flexible permissions (Alexei) git-svn-id: svn://svn.zabbix.com/trunk@357 97f52cf1-0a1b-0410-bd0e-c28be96e8082 --- frontends/php/alerts.php | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'frontends/php/alerts.php') diff --git a/frontends/php/alerts.php b/frontends/php/alerts.php index a06bec09..bb1b1768 100644 --- a/frontends/php/alerts.php +++ b/frontends/php/alerts.php @@ -50,6 +50,11 @@ $col=0; while($row=DBfetch($result)) { + if(!check_right("User","R",$row["userid"])) + { + continue; + } + if($col++%2==0) { echo ""; } else { echo ""; } -- cgit