Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Merge pull request #174 from ljader/fix-commit-message-escaping
[JENKINS-36521] Print raw (not HTML escaped) commit messages
  • Loading branch information
ljader committed Jan 17, 2017
2 parents de82ef7 + 4fe42be commit 8dc995b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Expand Up @@ -60,7 +60,7 @@ THE SOFTWARE.
<ol>
<j:forEach var="cs" items="${it.logs}" varStatus="loop">
<li>
${cs.msgAnnotated}
<j:out value="${cs.msgAnnotated}"/>
(<a href="${changesBaseUrl}changes#detail${loop.index}">${%detail}</a>

<j:set var="cslink" value="${browser.getChangeSetLink(cs)}"/>
Expand Down
Expand Up @@ -44,7 +44,7 @@ THE SOFTWARE.
<a href="${browser.getChangeSetLink(cs)}">${cs.revision}</a>
by <a href="${rootURL}/${cs.author.url}/">${cs.author}</a>:
</b><br/>
${cs.msgAnnotated}
<j:out value="${cs.msgAnnotated}"/>
</div>
</td>
</tr>
Expand Down

0 comments on commit 8dc995b

Please sign in to comment.