diff options
author | Niko Tyni <ntyni@iki.fi> | 2008-04-25 20:34:31 +0200 |
---|---|---|
committer | Niko Tyni <ntyni@iki.fi> | 2008-04-25 20:34:31 +0200 |
commit | e1aa9c368e3ad73b576d4410ffc937d1d03c50f1 (patch) | |
tree | de5a686f5136d323c4bf549169391e3de5b5669a | |
parent | e942ada8af8b54bb34b9a5a3a7ab34e7ae7ca347 (diff) | |
download | smokeping-e1aa9c368e3ad73b576d4410ffc937d1d03c50f1.tar.gz smokeping-e1aa9c368e3ad73b576d4410ffc937d1d03c50f1.tar.xz |
honour the 'linkstyle' variable when zooming
-rw-r--r-- | CHANGES | 3 | ||||
-rw-r--r-- | lib/Smokeping.pm | 2 |
2 files changed, 4 insertions, 1 deletions
@@ -1,3 +1,6 @@ +* honour the 'linkstyle' variable when zooming + -- niko, reported by Wolfgang Tremmel as Debian bug #476404 + * the 'ralf' fix for cgi which is not able to read the secrets file. -- tobi * display "all the smoke" even when it gets cut at the top end of the graph diff --git a/lib/Smokeping.pm b/lib/Smokeping.pm index 13dac78..50fad0f 100644 --- a/lib/Smokeping.pm +++ b/lib/Smokeping.pm @@ -1378,7 +1378,7 @@ sub get_detail ($$$$;$){ # $page .= (time-$timer_start)."<br/>"; # $page .= join " ",map {"'$_'"} @task; $page .= "<br/>"; - $page .= ( qq{<a href="?}.hierarchy($q).qq{displaymode=n;start=$startstr;end=now;}."target=".$q->param('target').$s.'">' + $page .= ( qq{<a href="}.cgiurl($q,$cfg)."?".hierarchy($q).qq{displaymode=n;start=$startstr;end=now;}."target=".$q->param('target').$s.'">' . qq{<IMG BORDER="0" SRC="${imghref}${s}_${end}_${start}.png">}."</a>" ); #" $page .= "</div>"; } |