diff options
author | osmiy <osmiy@97f52cf1-0a1b-0410-bd0e-c28be96e8082> | 2006-10-30 15:30:31 +0000 |
---|---|---|
committer | osmiy <osmiy@97f52cf1-0a1b-0410-bd0e-c28be96e8082> | 2006-10-30 15:30:31 +0000 |
commit | cb6645a1e4f14f29e542d5342e927695452138d8 (patch) | |
tree | 33be58031c74312db2e80851743c78205b2297dd | |
parent | e8ec57fd3361aae7229964e6b3ae96009346d3f1 (diff) | |
download | zabbix-cb6645a1e4f14f29e542d5342e927695452138d8.tar.gz zabbix-cb6645a1e4f14f29e542d5342e927695452138d8.tar.xz zabbix-cb6645a1e4f14f29e542d5342e927695452138d8.zip |
-minor fix
git-svn-id: svn://svn.zabbix.com/trunk@3414 97f52cf1-0a1b-0410-bd0e-c28be96e8082
-rw-r--r-- | frontends/php/include/validate.inc.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/frontends/php/include/validate.inc.php b/frontends/php/include/validate.inc.php index 21882e47..b91b300f 100644 --- a/frontends/php/include/validate.inc.php +++ b/frontends/php/include/validate.inc.php @@ -92,7 +92,7 @@ { foreach($_REQUEST[$field] as $key => $val) { - $expression2 = str_replace("{}",'$_REQUEST["'.$field.'"]['.$key.']',$expression); + $expression2 = str_replace("{}",'$_REQUEST["'.$field.'"]["'.$key.'"]',$expression); if(calc_exp2($fields,$field,$expression2)==FALSE) return FALSE; } |