From bacc6a25b93c5fa76e873c9c2c2cddf6526dfe2e Mon Sep 17 00:00:00 2001 From: Igor Sfiligoi Date: Mon, 10 Sep 2012 18:41:23 +0000 Subject: Add additional protection for timezone calculation --- src/lib/rrdFlot.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/rrdFlot.js b/src/lib/rrdFlot.js index 8587d61..e607e6e 100644 --- a/src/lib/rrdFlot.js +++ b/src/lib/rrdFlot.js @@ -207,7 +207,7 @@ rrdFlot.prototype.createHTML = function() { // the passed timezone does not make sense // find the local time var d= new Date(); - true_tz=d.getTimezoneOffset()/60; + true_tz=Math.ceil(d.getTimezoneOffset()/60); } for(var j=0; j<24; j++) { timezone.appendChild(new Option(timezones[j],timezones[j],true_tz==Math.ceil(timezones[j]))); -- cgit v1.2.3