summaryrefslogtreecommitdiffstats
path: root/frontends/php/chart6.php
diff options
context:
space:
mode:
authorartem <artem@97f52cf1-0a1b-0410-bd0e-c28be96e8082>2008-04-02 11:44:34 +0000
committerartem <artem@97f52cf1-0a1b-0410-bd0e-c28be96e8082>2008-04-02 11:44:34 +0000
commit908fda905acd739d8d2376ffb33f7e5a63faf26c (patch)
tree55f16bf5ae2a95e9dbbf6266f17be864f2d2db32 /frontends/php/chart6.php
parent82e68eabae069748d6691cab742f5fde436a56cb (diff)
downloadzabbix-908fda905acd739d8d2376ffb33f7e5a63faf26c.tar.gz
zabbix-908fda905acd739d8d2376ffb33f7e5a63faf26c.tar.xz
zabbix-908fda905acd739d8d2376ffb33f7e5a63faf26c.zip
- improvements in permissions (Artem)
git-svn-id: svn://svn.zabbix.com/trunk@5577 97f52cf1-0a1b-0410-bd0e-c28be96e8082
Diffstat (limited to 'frontends/php/chart6.php')
-rw-r--r--frontends/php/chart6.php27
1 files changed, 13 insertions, 14 deletions
diff --git a/frontends/php/chart6.php b/frontends/php/chart6.php
index 0149f4ed..c5abf5f3 100644
--- a/frontends/php/chart6.php
+++ b/frontends/php/chart6.php
@@ -47,27 +47,26 @@ include_once "include/page_header.php";
check_fields($fields);
?>
<?php
- if(! (DBfetch(DBselect('select graphid from graphs where graphid='.$_REQUEST['graphid']))) )
- {
+ if(!DBfetch(DBselect('select graphid from graphs where graphid='.$_REQUEST['graphid']))){
show_error_message(S_NO_GRAPH_DEFINED);
-
}
- $denyed_hosts = get_accessible_hosts_by_user($USER_DETAILS, PERM_READ_ONLY, PERM_MODE_LT);
+ $available_hosts = get_accessible_hosts_by_user($USER_DETAILS, PERM_READ_ONLY);
- if( !($db_data = DBfetch(DBselect(
- 'SELECT g.*,h.host,h.hostid '.
- ' FROM graphs as g '.
- ' LEFT JOIN graphs_items as gi ON g.graphid=gi.graphid '.
- ' LEFT JOIN items as i ON gi.itemid=i.itemid '.
- ' LEFT JOIN hosts as h ON i.hostid=h.hostid '.
- ' WHERE g.graphid='.$_REQUEST['graphid'].
- ' AND ( h.hostid not in ('.$denyed_hosts.') '.
- ' OR h.hostid is NULL) '))))
- {
+ if(!graph_accessible($_REQUEST['graphid'])){
access_deny();
}
+ $sql = 'SELECT g.*,h.host,h.hostid '.
+ ' FROM graphs as g '.
+ ' LEFT JOIN graphs_items as gi ON g.graphid=gi.graphid '.
+ ' LEFT JOIN items as i ON gi.itemid=i.itemid '.
+ ' LEFT JOIN hosts as h ON i.hostid=h.hostid '.
+ ' WHERE g.graphid='.$_REQUEST['graphid'].
+ ' AND h.hostid IN ('.$available_hosts.') ';
+
+ $db_data = DBfetch(DBselect($sql));
+
$graph = new Pie($db_data["graphtype"]);
if(isset($_REQUEST["period"])) $graph->SetPeriod($_REQUEST["period"]);