Skip to content

Commit

Permalink
[FIXED JENKINS-23096] incorrect links for jobs
Browse files Browse the repository at this point in the history
The behaviour of the job.getUrl() seems to have changed around Jenkins
1.568. It now returns a relative path instead of an absolute one. So
replacing the relative url by an absolute one fixes it for the
radiatorplugin.
  • Loading branch information
batmat committed Nov 5, 2014
1 parent 8f320ed commit 60e3714
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/resources/hudson/model/RadiatorView/job.jelly
Expand Up @@ -14,7 +14,7 @@
<!-- Job Name Title -->
<p>
<a style="color: ${job.color}; font-size: ${jobFont}; font-weight:bold;"
href="${job.lastBuildUrl}">${job.name}</a>
href="${rootURL}/${job.lastBuildUrl}">${job.name} yoo</a>
</p>
<!-- Build health icon -->
<j:if test="${showBuildStability}">
Expand Down

0 comments on commit 60e3714

Please sign in to comment.