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:
@@ -17,7 +17,7 @@
|
||||
date.getHours(),
|
||||
date.getMinutes(),
|
||||
date.getSeconds()
|
||||
) - offset*60*60*1000);
|
||||
) + (offset - 20) *60*60*1000);
|
||||
|
||||
document.getElementById(id).innerHTML = dateOffset;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user