diff options
| author | artem <artem@97f52cf1-0a1b-0410-bd0e-c28be96e8082> | 2008-01-15 13:25:18 +0000 |
|---|---|---|
| committer | artem <artem@97f52cf1-0a1b-0410-bd0e-c28be96e8082> | 2008-01-15 13:25:18 +0000 |
| commit | ed455b3c7df5f5a0bf44acd123beec272e7b57f0 (patch) | |
| tree | 7ca9e261c2290a56fd9b774566fb74e112e00d26 /frontends/php/include/perm.inc.php | |
| parent | e37a3325566f080ec6e2e53277e1bf1a3d14a013 (diff) | |
- [DEV-90] fixed SQL (Artem)
- [DEV-55] fixes for Screen elements (Artem)
git-svn-id: svn://svn.zabbix.com/trunk@5251 97f52cf1-0a1b-0410-bd0e-c28be96e8082
Diffstat (limited to 'frontends/php/include/perm.inc.php')
| -rw-r--r-- | frontends/php/include/perm.inc.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/frontends/php/include/perm.inc.php b/frontends/php/include/perm.inc.php index a0eec67e..df137f8b 100644 --- a/frontends/php/include/perm.inc.php +++ b/frontends/php/include/perm.inc.php @@ -353,7 +353,7 @@ COpt::counter_up('perm'); $do_break = true; if(is_array($nodeid) && !in_array($node_data['nodeid'],$nodeid)) continue; - else if(isset($nodeid) and (bccomp($node_data['nodeid'] ,$nodeid) != 0)) continue; + else if(!is_array($nodeid) && (bccomp($node_data['nodeid'] ,$nodeid) != 0)) continue; } else { |
