Skip to content

Commit

Permalink
SECURITY-1924, SECURITY-1925
Browse files Browse the repository at this point in the history
  • Loading branch information
MRamonLeon committed Jun 25, 2020
1 parent 05f6b3d commit b5f22a4
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ THE SOFTWARE.
</j:when>
<j:otherwise>
<a href="${p.nearestRunUrl}" class="model-link inside">
<img src="${imagesURL}/24x24/${b.buildStatusUrl}" tooltip="${p.tooltip} ${it.number!=b.number?(it.isBuilding()?'- pending' : '- skipped'):''}" alt="${p.tooltip}" style="${it.number!=b.number?'opacity:0.5':''}" height="24" width="24"/>
<img src="${imagesURL}/24x24/${b.buildStatusUrl}" tooltip="${h.xmlEscape(p.tooltip)} ${it.number!=b.number?(it.isBuilding()?'- pending' : '- skipped'):''}" alt="${p.tooltip}" style="${it.number!=b.number?'opacity:0.5':''}" height="24" width="24"/>
<j:if test="${empty(o.x) and empty(o.y)}">
${p.combination.toString(o.z)}
</j:if>
Expand Down
4 changes: 2 additions & 2 deletions src/main/resources/lib/hudson/matrix-project/matrix.jelly
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ THE SOFTWARE.
</j:if>
<j:forEach begin="1" end="${o.repeatX(loop.index)}">
<j:forEach var="v" items="${x.values}">
<td class="matrix-header" colspan="${o.width(loop.index)}" tooltip="${x.name}">
<td class="matrix-header" colspan="${o.width(loop.index)}" tooltip="${h.xmlEscape(x.name)}">
${v}
</td>
</j:forEach>
Expand All @@ -76,7 +76,7 @@ THE SOFTWARE.
<tr>
<j:forEach var="y" items="${o.y}" varStatus="loop">
<j:if test="${r.drawYHeader(loop.index)!=null}">
<td class="matrix-leftcolumn" rowspan="${o.height(loop.index)}" tooltip="${y.name}">
<td class="matrix-leftcolumn" rowspan="${o.height(loop.index)}" tooltip="${h.xmlEscape(y.name)}">
${r.drawYHeader(loop.index)}
</td>
</j:if>
Expand Down

0 comments on commit b5f22a4

Please sign in to comment.