summaryrefslogtreecommitdiffstats
path: root/frontends/php/popup.php
diff options
context:
space:
mode:
authorartem <artem@97f52cf1-0a1b-0410-bd0e-c28be96e8082>2008-04-03 10:24:46 +0000
committerartem <artem@97f52cf1-0a1b-0410-bd0e-c28be96e8082>2008-04-03 10:24:46 +0000
commitf76c30e882c1ab030b91dbe4ea8581c2b2c6ef05 (patch)
tree82d0cc4a1d306007378843e1ee2aacf9b29e9b21 /frontends/php/popup.php
parentd61b888e2947cc92766cac05abe6f8a238038269 (diff)
downloadzabbix-f76c30e882c1ab030b91dbe4ea8581c2b2c6ef05.tar.gz
zabbix-f76c30e882c1ab030b91dbe4ea8581c2b2c6ef05.tar.xz
zabbix-f76c30e882c1ab030b91dbe4ea8581c2b2c6ef05.zip
- added "remove all" option in dashboard menus (Artem)
git-svn-id: svn://svn.zabbix.com/trunk@5584 97f52cf1-0a1b-0410-bd0e-c28be96e8082
Diffstat (limited to 'frontends/php/popup.php')
-rw-r--r--frontends/php/popup.php10
1 files changed, 5 insertions, 5 deletions
diff --git a/frontends/php/popup.php b/frontends/php/popup.php
index 8c52c6e7..b426bbd0 100644
--- a/frontends/php/popup.php
+++ b/frontends/php/popup.php
@@ -1067,7 +1067,7 @@ include_once "include/page_header.php";
$result=DBselect($sql);
while($row=DBfetch($result)){
- if(!sysmap_accessiable($row["sysmapid"],PERM_READ_ONLY)) continue;
+ if(!sysmap_accessible($row["sysmapid"],PERM_READ_ONLY)) continue;
$row['node_name'] = isset($row['node_name']) ? '('.$row['node_name'].') ' : '';
$name = $row['node_name'].$row['name'];
@@ -1158,7 +1158,7 @@ include_once "include/page_header.php";
$result = DBselect('select slideshowid,name from slideshows where '.DBin_node('slideshowid',$nodeid).' order by name');
while($row=DBfetch($result)){
- if(!slideshow_accessiable($row["slideshowid"], PERM_READ_ONLY))
+ if(!slideshow_accessible($row["slideshowid"], PERM_READ_ONLY))
continue;
$name = new CLink($row["name"],"#","action");
@@ -1190,7 +1190,7 @@ include_once "include/page_header.php";
$result = DBselect('select screenid,name from screens where '.DBin_node('screenid',$nodeid).' order by name');
while($row=DBfetch($result))
{
- if(!screen_accessiable($row["screenid"], PERM_READ_ONLY))
+ if(!screen_accessible($row["screenid"], PERM_READ_ONLY))
continue;
$name = new CLink($row["name"],"#","action");
@@ -1226,9 +1226,9 @@ include_once "include/page_header.php";
' ORDER BY s.name');
while($row=DBfetch($result))
{
- if(!screen_accessiable($row["screenid"], PERM_READ_ONLY))
+ if(!screen_accessible($row["screenid"], PERM_READ_ONLY))
continue;
- if(!screen_accessiable($row['screenid'], PERM_READ_ONLY)) continue;
+ if(!screen_accessible($row['screenid'], PERM_READ_ONLY)) continue;
if(check_screen_recursion($_REQUEST['screenid'],$row['screenid'])) continue;
$row['node_name'] = isset($row['node_name']) ? '('.$row['node_name'].') ' : '';