diff options
| author | osmiy <osmiy@97f52cf1-0a1b-0410-bd0e-c28be96e8082> | 2007-07-05 13:57:56 +0000 |
|---|---|---|
| committer | osmiy <osmiy@97f52cf1-0a1b-0410-bd0e-c28be96e8082> | 2007-07-05 13:57:56 +0000 |
| commit | 389a30f73355a069381e7dd7be26a1f7214fd8af (patch) | |
| tree | 43f495214f134056c003585903c3a90ae39b1b62 /frontends/php/items.php | |
| parent | d15be08d8c877a60134db0e428bed2e8e1dfc618 (diff) | |
| download | zabbix-389a30f73355a069381e7dd7be26a1f7214fd8af.tar.gz zabbix-389a30f73355a069381e7dd7be26a1f7214fd8af.tar.xz zabbix-389a30f73355a069381e7dd7be26a1f7214fd8af.zip | |
- merged rev. 4444:4445 of branches/1.4.2/ (Eugene) [added frontend-side support of quotes and triger expression validation]
git-svn-id: svn://svn.zabbix.com/trunk@4446 97f52cf1-0a1b-0410-bd0e-c28be96e8082
Diffstat (limited to 'frontends/php/items.php')
| -rw-r--r-- | frontends/php/items.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/frontends/php/items.php b/frontends/php/items.php index 281222f9..9c831956 100644 --- a/frontends/php/items.php +++ b/frontends/php/items.php @@ -303,7 +303,7 @@ include_once "include/page_header.php"; $result = false; if(!is_null(get_request("formula",null))) $_REQUEST['multiplier']=1; - if(0 == get_request("formula",null)) $_REQUEST['multiplier']=0; + if("0" === get_request("formula",null)) $_REQUEST['multiplier']=0; $group_itemid = $_REQUEST["group_itemid"]; foreach($group_itemid as $id) |
