summaryrefslogtreecommitdiffstats
path: root/frontends/php/graphs.php
diff options
context:
space:
mode:
authorartem <artem@97f52cf1-0a1b-0410-bd0e-c28be96e8082>2007-10-08 11:59:15 +0000
committerartem <artem@97f52cf1-0a1b-0410-bd0e-c28be96e8082>2007-10-08 11:59:15 +0000
commitf99327ef29f466bac40fdd47413d1a9cab9b3690 (patch)
tree48748ced776efb2490b7c382dcfb7c002ffb2130 /frontends/php/graphs.php
parent09174fc6e94e7ff57d3d1e9f8dd134be4d7645c7 (diff)
downloadzabbix-f99327ef29f466bac40fdd47413d1a9cab9b3690.tar.gz
zabbix-f99327ef29f466bac40fdd47413d1a9cab9b3690.tar.xz
zabbix-f99327ef29f466bac40fdd47413d1a9cab9b3690.zip
- [DEV-50] merged rev. 4841:4843 of branches/1.4/ (Artem) [improved incoming parameters exception validation]
git-svn-id: svn://svn.zabbix.com/trunk@4847 97f52cf1-0a1b-0410-bd0e-c28be96e8082
Diffstat (limited to 'frontends/php/graphs.php')
-rw-r--r--frontends/php/graphs.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/frontends/php/graphs.php b/frontends/php/graphs.php
index fd4e8df9..f7f8a037 100644
--- a/frontends/php/graphs.php
+++ b/frontends/php/graphs.php
@@ -44,7 +44,7 @@ include_once "include/page_header.php";
"copy_type" =>array(T_ZBX_INT, O_OPT, P_SYS, IN("0,1"),'isset({copy})'),
"copy_mode" =>array(T_ZBX_INT, O_OPT, P_SYS, IN("0"),NULL),
- "graphid"=> array(T_ZBX_INT, O_OPT, P_SYS, DB_ID, '{form}=="update"'),
+ "graphid"=> array(T_ZBX_INT, O_OPT, P_SYS, DB_ID, '(isset({form})&&({form}=="update"))'),
"name"=> array(T_ZBX_STR, O_OPT, NULL, NOT_EMPTY, 'isset({save})'),
"width"=> array(T_ZBX_INT, O_OPT, NULL, BETWEEN(0,65535), 'isset({save})'),
"height"=> array(T_ZBX_INT, O_OPT, NULL, BETWEEN(0,65535), 'isset({save})'),
@@ -67,7 +67,7 @@ include_once "include/page_header.php";
"group_graphid"=> array(T_ZBX_INT, O_OPT, NULL, DB_ID, NULL),
"copy_targetid"=> array(T_ZBX_INT, O_OPT, NULL, DB_ID, NULL),
- "filter_groupid"=> array(T_ZBX_INT, O_OPT, P_SYS, DB_ID, 'isset({copy})&&{copy_type}==0'),
+ "filter_groupid"=> array(T_ZBX_INT, O_OPT, P_SYS, DB_ID, 'isset({copy})&&(isset({copy_type})&&({copy_type}==0))'),
/* actions */
"add_item"=> array(T_ZBX_STR, O_OPT, P_SYS|P_ACT, NULL, NULL),
"delete_item"=> array(T_ZBX_STR, O_OPT, P_SYS|P_ACT, NULL, NULL),