diff options
| author | hugetoad <hugetoad@97f52cf1-0a1b-0410-bd0e-c28be96e8082> | 2002-06-05 08:48:43 +0000 |
|---|---|---|
| committer | hugetoad <hugetoad@97f52cf1-0a1b-0410-bd0e-c28be96e8082> | 2002-06-05 08:48:43 +0000 |
| commit | 64d2ad28cd35462e60b82c7bbef3edbde55b1cee (patch) | |
| tree | d276823e6aea87030b1a75bbab3c830a1adb971c /frontends/php/include | |
| parent | 16ade8fbfde6ec3f6c899bab8a109db0b366acdb (diff) | |
| download | zabbix-64d2ad28cd35462e60b82c7bbef3edbde55b1cee.tar.gz zabbix-64d2ad28cd35462e60b82c7bbef3edbde55b1cee.tar.xz zabbix-64d2ad28cd35462e60b82c7bbef3edbde55b1cee.zip | |
Different improvements.
git-svn-id: svn://svn.zabbix.com/trunk@403 97f52cf1-0a1b-0410-bd0e-c28be96e8082
Diffstat (limited to 'frontends/php/include')
| -rw-r--r-- | frontends/php/include/config.inc | 7 | ||||
| -rw-r--r-- | frontends/php/include/db.inc | 2 |
2 files changed, 5 insertions, 4 deletions
diff --git a/frontends/php/include/config.inc b/frontends/php/include/config.inc index 8799b623..3b163592 100644 --- a/frontends/php/include/config.inc +++ b/frontends/php/include/config.inc @@ -1133,13 +1133,14 @@ where h.hostid=i.hostid and i.itemid=f.itemid and f.triggerid=$triggerid"; return DBexecute($sql); } - function update_trigger_status_to_unknown_by_hostid($hostid) + function update_trigger_value_to_unknown_by_hostid($hostid) { $sql="select distinct t.triggerid from hosts h,items i,triggers t,functions f where f.triggerid=t.triggerid and f.itemid=i.itemid and h.hostid=i.hostid and h.hostid=$hostid"; $result=DBselect($sql); while($row=DBfetch($result)) { - update_trigger_status($row["triggerid"],3); + $sql="update triggers set value=2 where triggerid=".$row["triggerid"]; + DBexecute($sql); } } @@ -1158,7 +1159,7 @@ where h.hostid=i.hostid and i.itemid=f.itemid and f.triggerid=$triggerid"; $result=DBselect($sql); if($status != DBget_field($result,0,0)) { - update_trigger_status_to_unknown_by_hostid($hostid); + update_trigger_value_to_unknown_by_hostid($hostid); $sql="update hosts set status=$status where hostid=$hostid"; return DBexecute($sql); } diff --git a/frontends/php/include/db.inc b/frontends/php/include/db.inc index a140b2fc..2de3acce 100644 --- a/frontends/php/include/db.inc +++ b/frontends/php/include/db.inc @@ -47,7 +47,7 @@ { global $DB,$DB_TYPE; - echo $query,"<br>"; +// echo $query,"<br>"; if($DB_TYPE == "MYSQL") { |
