diff options
author | hugetoad <hugetoad@97f52cf1-0a1b-0410-bd0e-c28be96e8082> | 2001-08-02 18:07:38 +0000 |
---|---|---|
committer | hugetoad <hugetoad@97f52cf1-0a1b-0410-bd0e-c28be96e8082> | 2001-08-02 18:07:38 +0000 |
commit | 70706618a68f09f7bc1f283dc105dbabbb4c3566 (patch) | |
tree | 22c8a8337c34c4373abb9caa0bb9997265ba78a1 | |
parent | 1a7e7c9de3c10dec1e6c1335d8b62201ae0a70c2 (diff) | |
download | zabbix-70706618a68f09f7bc1f283dc105dbabbb4c3566.tar.gz zabbix-70706618a68f09f7bc1f283dc105dbabbb4c3566.tar.xz zabbix-70706618a68f09f7bc1f283dc105dbabbb4c3566.zip |
Added 12hours trend.
git-svn-id: svn://svn.zabbix.com/trunk@158 97f52cf1-0a1b-0410-bd0e-c28be96e8082
-rw-r--r-- | frontends/php/trends.html | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/frontends/php/trends.html b/frontends/php/trends.html index 1e933544..a0ba7b27 100644 --- a/frontends/php/trends.html +++ b/frontends/php/trends.html @@ -14,6 +14,14 @@ echo "<font size=2>"; + if(isset($type)&&$type=="12hours") + { + echo "<b>[<a href='trends.html?itemid=$itemid&type=12hours'>12hours</a>]</b> "; + } + else + { + echo "<a href='trends.html?itemid=$itemid&type=12hours'>12hours</a> "; + } if(isset($type)&&$type=="4hours") { echo "<b>[<a href='trends.html?itemid=$itemid&type=4hours'>4hours</a>]</b> "; |