summaryrefslogtreecommitdiffstats
path: root/frontends/php/charts.php
diff options
context:
space:
mode:
authorosmiy <osmiy@97f52cf1-0a1b-0410-bd0e-c28be96e8082>2006-11-13 11:53:46 +0000
committerosmiy <osmiy@97f52cf1-0a1b-0410-bd0e-c28be96e8082>2006-11-13 11:53:46 +0000
commit0877e5ce56b36b516107c117ea6859dffd463d85 (patch)
tree5daecebe9c20e601b2ceec3335449abde57a0c03 /frontends/php/charts.php
parent8c79e63b4f2d603ab31ce6db251536d030620f53 (diff)
downloadzabbix-0877e5ce56b36b516107c117ea6859dffd463d85.tar.gz
zabbix-0877e5ce56b36b516107c117ea6859dffd463d85.tar.xz
zabbix-0877e5ce56b36b516107c117ea6859dffd463d85.zip
- merged 3458:3460 from (branches/1.1.4) [fixed graphs] (Eugene)
git-svn-id: svn://svn.zabbix.com/trunk@3461 97f52cf1-0a1b-0410-bd0e-c28be96e8082
Diffstat (limited to 'frontends/php/charts.php')
-rw-r--r--frontends/php/charts.php14
1 files changed, 10 insertions, 4 deletions
diff --git a/frontends/php/charts.php b/frontends/php/charts.php
index 932d7467..4617a441 100644
--- a/frontends/php/charts.php
+++ b/frontends/php/charts.php
@@ -45,7 +45,7 @@ include_once "include/page_header.php";
$fields=array(
"groupid"=> array(T_ZBX_INT, O_OPT, P_SYS, DB_ID,NULL),
"hostid"=> array(T_ZBX_INT, O_OPT, P_SYS, DB_ID,NULL),
- "graphid"=> array(T_ZBX_INT, O_OPT, P_SYS|P_NZERO, DB_ID,NULL),
+ "graphid"=> array(T_ZBX_INT, O_OPT, P_SYS, DB_ID,NULL),
"dec"=> array(T_ZBX_INT, O_OPT, P_SYS, BETWEEN(0,65535*65535),NULL),
"inc"=> array(T_ZBX_INT, O_OPT, P_SYS, BETWEEN(0,65535*65535),NULL),
"left"=> array(T_ZBX_INT, O_OPT, P_SYS, BETWEEN(0,65535*65535),NULL),
@@ -61,13 +61,19 @@ include_once "include/page_header.php";
check_fields($fields);
?>
<?php
- $_REQUEST["graphid"] = get_request("graphid", get_profile("web.charts.graphid", 0));
+ if(isset($_REQUEST["graphid"]) && !isset($_REQUEST["hostid"]))
+ {
+ $_REQUEST["groupid"] = $_REQUEST["hostid"] = 0;
+ }
+
+ $_REQUEST["graphid"] = get_request("graphid", get_profile("web.charts.grapgid", 0));
+
$_REQUEST["keep"] = get_request("keep", 1); // possible excessed REQUEST variable !!!
$_REQUEST["period"] = get_request("period",get_profile("web.graph[".$_REQUEST["graphid"]."].period", 3600));
- $effectiveperiod=navigation_bar_calc();
+ $effectiveperiod = navigation_bar_calc();
- validate_group_with_host(PERM_READ_ONLY,array("allow_all_hosts","monitored_hosts","with_items"));
+ validate_group_with_host(PERM_READ_ONLY,array("allow_all_hosts","monitored_hosts","with_items", "always_select_first_host"));
if($_REQUEST["graphid"] > 0 && $_REQUEST["hostid"] > 0)
{