Skip to content

Commit

Permalink
Merge pull request #1 from christiangalsterer/master
Browse files Browse the repository at this point in the history
fixes JENKINS-21080: links to jobs in build status page is dead when running Jenkins on a non-root context.
  • Loading branch information
ikedam committed Dec 22, 2013
2 parents 633d68c + 8fc94b8 commit fec0b7b
Showing 1 changed file with 2 additions and 2 deletions.
Expand Up @@ -28,10 +28,10 @@ THE SOFTWARE.
<t:summary icon="package.png">
<l:pane title="${%Copied Job}" width="3">
<f:entry title="${%Copied From}">
<a href="${baseURL}/${it.fromUrl}">${it.fromJobName}</a>
<a href="${rootURL}/${it.fromUrl}">${it.fromJobName}</a>
</f:entry>
<f:entry title="${%Copied To}">
<a href="${baseURL}/${it.toUrl}">${it.toJobName}</a>
<a href="${rootURL}/${it.toUrl}">${it.toJobName}</a>
</f:entry>
</l:pane>
<j:if test="${it.failed}">
Expand Down

0 comments on commit fec0b7b

Please sign in to comment.