Skip to content

Commit

Permalink
Merge pull request #925 from ctapobep/master
Browse files Browse the repository at this point in the history
[JENKINS-18723] Fixed performance bottleneck. Corrected the formation of...
  • Loading branch information
jglick committed Aug 29, 2013
2 parents 574fe14 + cc25950 commit c63e1f7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions core/src/main/resources/lib/hudson/projectView.jelly
Expand Up @@ -79,9 +79,9 @@ THE SOFTWARE.
<j:forEach var="v" items="${attrs.views}">
<t:projectViewNested />
</j:forEach>

<j:forEach var="job" items="${jobs}">
<t:projectViewRow jobBaseUrl="${h.getRelativeLinkTo(job).substring(0, h.getRelativeLinkTo(job).length() - job.shortUrl.length())}"/>
<j:set var="relativeLinkToJob" value="${h.getRelativeLinkTo(job)}"/>
<t:projectViewRow jobBaseUrl="${relativeLinkToJob.substring(0, relativeLinkToJob.length() - job.shortUrl.length())}"/>
</j:forEach>
</table>
<t:iconSize><t:rssBar/></t:iconSize>
Expand Down

0 comments on commit c63e1f7

Please sign in to comment.