Skip to content

Commit

Permalink
[FIXED JENKINS-31751]: Correctly escape HTML in jelly files.
Browse files Browse the repository at this point in the history
  • Loading branch information
calin-iorgulescu committed Dec 7, 2015
1 parent 5c79c78 commit 8651004
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
Expand Up @@ -7,7 +7,7 @@
<td class="${h.ifThenElse(c.failed,' red','')}" style="white-space: normal;">
<a href="${h.ifThenElse(nolink!=null,null,c.name+'/')}"><st:out value="${c.name}"/></a>
</td>
${c.printFourCoverageColumns()}
<j:out value="${c.printFourCoverageColumns()}"/>
</tr>
</j:forEach>
</table>
Expand Down
Expand Up @@ -7,7 +7,7 @@
<td class="nowrap ${h.ifThenElse(c.failed,' red','')}" >
<a href="${h.ifThenElse(nolink!=null,null,c.name+'/')}"><st:out value="${c.name}"/></a>
</td>
${c.printFourCoverageColumns()}
<j:out value="${c.printFourCoverageColumns()}"/>
</tr>
</j:forEach>
</table>
Expand Down
Expand Up @@ -4,7 +4,7 @@
<e:captionLine />
<tr>
<td>${title}</td>
${it.printFourCoverageColumns()}
<j:out value="${it.printFourCoverageColumns()}"/>
</tr>
</table>
</j:jelly>
Expand Up @@ -4,7 +4,7 @@
<e:captionLine />
<tr>
<td>${title}</td>
${it.printFourCoverageColumns()}
<j:out value="${it.printFourCoverageColumns()}"/>
</tr>
</table>
</j:jelly>

0 comments on commit 8651004

Please sign in to comment.