summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog1
-rw-r--r--TODO1
-rw-r--r--frontends/php/tr_status.php14
3 files changed, 12 insertions, 4 deletions
diff --git a/ChangeLog b/ChangeLog
index f0753369..88ec03bd 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -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)
diff --git a/TODO b/TODO
index 0004706f..a162c5f5 100644
--- a/TODO
+++ b/TODO
@@ -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%'";
}