diff options
| author | osmiy <osmiy@97f52cf1-0a1b-0410-bd0e-c28be96e8082> | 2007-08-01 11:14:33 +0000 |
|---|---|---|
| committer | osmiy <osmiy@97f52cf1-0a1b-0410-bd0e-c28be96e8082> | 2007-08-01 11:14:33 +0000 |
| commit | df7a8d081f3993f35c3ec6695d098d37363d49a6 (patch) | |
| tree | 15839f2a34ec38c28f6a9ec40fcafa16d4c54852 /frontends/php/include/config.inc.php | |
| parent | 37fc71a7297c4ad3b4a6d6313b0468584fa232e2 (diff) | |
- fixed filtering of items by status (Eugene)
git-svn-id: svn://svn.zabbix.com/trunk@4498 97f52cf1-0a1b-0410-bd0e-c28be96e8082
Diffstat (limited to 'frontends/php/include/config.inc.php')
| -rw-r--r-- | frontends/php/include/config.inc.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/frontends/php/include/config.inc.php b/frontends/php/include/config.inc.php index 682dd7ce..7e181538 100644 --- a/frontends/php/include/config.inc.php +++ b/frontends/php/include/config.inc.php @@ -1342,7 +1342,7 @@ $result = function empty2null($var) { - return empty($var) ? null : $var; + return ($var == "") ? null : $var; } |
