Skip to content

Commit

Permalink
LUI:48: Un-escaping HTML for retired answer concepts
Browse files Browse the repository at this point in the history
  • Loading branch information
mozzy11 committed Feb 25, 2019
1 parent 9dd4a48 commit 1d940d4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion omod/src/main/webapp/dictionary/concept.jsp
Original file line number Diff line number Diff line change
Expand Up @@ -227,7 +227,7 @@
<c:forEach items="${command.locales}" var="loc">
<td class="${loc}">
<c:forEach items="${command.conceptAnswersByLocale[loc]}" var="answer">
<a href="concept.htm?conceptId=${fn:substring(answer.key, 0, fn:indexOf(answer.key, '^'))}"><c:out value="${answer.value}" /> (${fn:substring(answer.key, 0, fn:indexOf(answer.key, '^'))})</a><br/>
<a href="concept.htm?conceptId=${fn:substring(answer.key, 0, fn:indexOf(answer.key, '^'))}"><c:out value="${answer.value}" escapeXml="false"/> (${fn:substring(answer.key, 0, fn:indexOf(answer.key, '^'))})</a><br/>
</c:forEach>
</td>
</c:forEach>
Expand Down

0 comments on commit 1d940d4

Please sign in to comment.