Some weird timezone calculations in there before. Not really sure what the magic 20 is, but it makes things work better than before.

git-svn-id: https://svn.apache.org/repos/asf/maven/maven-1/plugins/trunk@113492 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
bwalding
2003-06-14 07:52:41 +00:00
parent fb4145161b
commit a81d886627

View File

@@ -17,7 +17,7 @@
date.getHours(),
date.getMinutes(),
date.getSeconds()
) - offset*60*60*1000);
) + (offset - 20) *60*60*1000);
document.getElementById(id).innerHTML = dateOffset;
}