Skip to content

Commit

Permalink
Merge pull request #813 from fredg02/JENKINS-10184
Browse files Browse the repository at this point in the history
[FIXED JENKINS-10184] wrong timestamps in build timeline.

I'm going to just merge this in for now and welcome anyone who finds the proper way to do this.
  • Loading branch information
kohsuke committed Jul 17, 2013
2 parents d0a9fb7 + f6ac62b commit 3318090
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 3318090

Please sign in to comment.