summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorhugetoad <hugetoad@97f52cf1-0a1b-0410-bd0e-c28be96e8082>2005-12-28 14:13:47 +0000
committerhugetoad <hugetoad@97f52cf1-0a1b-0410-bd0e-c28be96e8082>2005-12-28 14:13:47 +0000
commit409ee0ae8dba2a54aecfc0f1f75df4dd48e262c4 (patch)
tree5bd17429eb25417fe3336520e58d122c7f6a0d00
parent3408b894d2875eab784774ac58fa714e31ab7406 (diff)
downloadzabbix-409ee0ae8dba2a54aecfc0f1f75df4dd48e262c4.tar.gz
zabbix-409ee0ae8dba2a54aecfc0f1f75df4dd48e262c4.tar.xz
zabbix-409ee0ae8dba2a54aecfc0f1f75df4dd48e262c4.zip
Minor fixes.
git-svn-id: svn://svn.zabbix.com/trunk@2442 97f52cf1-0a1b-0410-bd0e-c28be96e8082
-rw-r--r--TODO2
-rw-r--r--frontends/php/actionconf.php1
-rw-r--r--frontends/php/graphs.php2
-rw-r--r--frontends/php/latestalarms.php2
4 files changed, 6 insertions, 1 deletions
diff --git a/TODO b/TODO
index 30c10284..8e49e38a 100644
--- a/TODO
+++ b/TODO
@@ -1,7 +1,7 @@
1.1beta5:
- - centralized definition of actions
- remembering of host names in various screens
+ - uphgrade script for actions
- triggers on windows logs and file monitoring
- execution of commands on monitored hosts in case of pre-defined events
diff --git a/frontends/php/actionconf.php b/frontends/php/actionconf.php
index b161ee33..b88a324f 100644
--- a/frontends/php/actionconf.php
+++ b/frontends/php/actionconf.php
@@ -28,6 +28,7 @@
?>
<?php
+ update_profile("web.menu.config.last",$page["file"]);
// if(($_REQUEST["triggerid"]!=0)&&!check_right_on_trigger("U",$_REQUEST["triggerid"]))
// {
// show_table_header("<font color=\"AA0000\">".S_NO_PERMISSIONS."</font>");
diff --git a/frontends/php/graphs.php b/frontends/php/graphs.php
index 683b76ac..b394da38 100644
--- a/frontends/php/graphs.php
+++ b/frontends/php/graphs.php
@@ -38,6 +38,8 @@
show_footer();
exit;
}
+ $_REQUEST["hostid"]=@iif(isset($_REQUEST["hostid"]),$_REQUEST["hostid"],get_profile("web.latest.hostid",0));
+ update_profile("web.latest.hostid",$_REQUEST["hostid"]);
update_profile("web.menu.config.last",$page["file"]);
?>
diff --git a/frontends/php/latestalarms.php b/frontends/php/latestalarms.php
index 8ccaa0fe..70fe3ddc 100644
--- a/frontends/php/latestalarms.php
+++ b/frontends/php/latestalarms.php
@@ -52,6 +52,8 @@
?>
<?php
+ $_REQUEST["hostid"]=@iif(isset($_REQUEST["hostid"]),$_REQUEST["hostid"],get_profile("web.latest.hostid",0));
+ update_profile("web.latest.hostid",$_REQUEST["hostid"]);
update_profile("web.menu.view.last",$page["file"]);
?>