diff options
-rw-r--r-- | ChangeLog | 1 | ||||
-rw-r--r-- | TODO | 1 | ||||
-rw-r--r-- | frontends/php/tr_status.php | 14 |
3 files changed, 12 insertions, 4 deletions
@@ -1,5 +1,6 @@ Changes for 1.0beta7: + - fixed Select in Status of Triggers (Alexei) - precision of Change is set to 2 in Latest Values (Alexei) - --enable-static to work on all platforms (Alexei) - zabbix_sender to be able to get information from stdin (Alexei) @@ -1,6 +1,5 @@ HIGH PRIORITY: - - fix Select in Status of Triggers - mass updates/inserts (add items and triggers for all hosts at once) - support for net-snmp - LDAP authorisation (should work with MSWindows LDAP) diff --git a/frontends/php/tr_status.php b/frontends/php/tr_status.php index e31bb7f5..3177f4b7 100644 --- a/frontends/php/tr_status.php +++ b/frontends/php/tr_status.php @@ -113,17 +113,25 @@ ?> <? - if(!isset($select)) + if(!isset($HTTP_GET_VARS["select"])) { $select=""; } + else + { + $select=$HTTP_GET_VARS["select"]; + } - if(!isset($txt_select)) + if(!isset($HTTP_GET_VARS["txt_select"])) { $txt_select=""; } + else + { + $txt_select=$HTTP_GET_VARS["txt_select"]; + } - if(isset($btnSelect)&&($btnSelect=="Inverse select")) + if(isset($HTTP_GET_VARS["btnSelect"])&&($HTTP_GET_VARS["btnSelect"]=="Inverse select")) { $select_cond="not like '%$txt_select%'"; } |