diff options
author | Tobi Oetiker <tobi@oetiker.ch> | 2007-09-06 17:42:52 +0200 |
---|---|---|
committer | Tobi Oetiker <tobi@oetiker.ch> | 2007-09-06 17:42:52 +0200 |
commit | 36ab642eaaa3a27e346659bef7fff07b3733ca30 (patch) | |
tree | 73fdb6f99ec745f319b6cb412614bab4c9139343 /lib/Smokeping | |
parent | 07465f9e04a8b0c92e047365971957b7250d9433 (diff) | |
download | smokeping-36ab642eaaa3a27e346659bef7fff07b3733ca30.tar.gz smokeping-36ab642eaaa3a27e346659bef7fff07b3733ca30.tar.xz |
fixed timezone issues in zoomer
Diffstat (limited to 'lib/Smokeping')
-rw-r--r-- | lib/Smokeping/Graphs.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Smokeping/Graphs.pm b/lib/Smokeping/Graphs.pm index bb7002d..f0d7bf7 100644 --- a/lib/Smokeping/Graphs.pm +++ b/lib/Smokeping/Graphs.pm @@ -109,7 +109,7 @@ sub get_multi_detail ($$$$;$){ $imgbase =$cfg->{General}{imgcache}."/__navcache/".time()."$$"; $imghref =$cfg->{General}{imgurl}."/__navcache/".time()."$$"; } else { - my $serial = $q->param('serial'); + my $serial = int(rand(2000)); $imgbase =$cfg->{General}{imgcache}."/__navcache/".$serial; $imghref =$cfg->{General}{imgurl}."/__navcache/".$serial; } |