Skip to content

Commit

Permalink
[FIXED JENKINS-10184] wrong timestamps in build timeline - added
Browse files Browse the repository at this point in the history
Daylight Saving Time
  • Loading branch information
fredg02 committed Jun 15, 2013
1 parent 3431a7c commit f6ac62b
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -39,7 +39,7 @@ THE SOFTWARE.

<script>
<j:invokeStatic var="tz" className="java.util.TimeZone" method="getDefault"/>
var tz = ${tz.rawOffset / 3600000};
var tz = ${(tz.rawOffset + tz.DSTSavings) / 3600000};
var tl = null;
<![CDATA[
function doLoad() {
Expand Down

0 comments on commit f6ac62b

Please sign in to comment.