From 303af5df15b6fabfb56cfb12482fef9809873f09 Mon Sep 17 00:00:00 2001 From: Tobi Oetiker Date: Sun, 16 Sep 2007 18:38:36 +0000 Subject: added missing hidden fields to zooming graph --- CHANGES | 1 + lib/Smokeping/Graphs.pm | 2 ++ 2 files changed, 3 insertions(+) diff --git a/CHANGES b/CHANGES index 84db612..22d97dd 100644 --- a/CHANGES +++ b/CHANGES @@ -1,3 +1,4 @@ +* Fixed zooming mode in multi host graphs -- tobi * Warn when smokeping uses takes over 80% of the time available for a polling cycle -- tobi * don't complain when there is no data in a graph yet while calculation stddev -- tobi * in a multihost graph take the number of pings for each component into consideration -- tobi diff --git a/lib/Smokeping/Graphs.pm b/lib/Smokeping/Graphs.pm index 895e3cb..ab8158c 100644 --- a/lib/Smokeping/Graphs.pm +++ b/lib/Smokeping/Graphs.pm @@ -288,6 +288,8 @@ sub get_multi_detail ($$$$;$){ . "

Time range: " . $q->textfield(-name=>'start',-default=>$startstr) . "  to  ".$q->textfield(-name=>'end',-default=>$endstr) + . $q->hidden(-name=>'epoch_start',-id=>'epoch_start',-default=>$start) + . $q->hidden(-name=>'epoch_end',-id=>'epoch_end',-default=>time()) . $q->hidden(-name=>'target' ) . $q->hidden(-name=>'displaymode',-default=>$mode ) . " " -- cgit v1.2.3-24-g4f1b