Skip to content

Commit a49cc47

Browse files
committed
LUI-48: Un escaping the HTML for the retired answer concepts
cleaning spaces
1 parent 9dd4a48 commit a49cc47

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

api/src/main/resources/messages.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,4 @@ legacyui.manageuser.noProviderIdentifier=No Identifier Specified
99
1010
${project.parent.artifactId}.Location.purgeLocation=Permanently Delete Location
1111
${project.parent.artifactId}.Location.confirmDelete=Are you sure you want to delete this Location? It will be permanently removed from the system.
12-
${project.parent.artifactId}.Location.purgedSuccessfully=Location deleted successfully
12+
${project.parent.artifactId}.Location.purgedSuccessfully=Location deleted successfully

omod/src/main/webapp/dictionary/concept.jsp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -227,7 +227,7 @@
227227
<c:forEach items="${command.locales}" var="loc">
228228
<td class="${loc}">
229229
<c:forEach items="${command.conceptAnswersByLocale[loc]}" var="answer">
230-
<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/>
230+
<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/>
231231
</c:forEach>
232232
</td>
233233
</c:forEach>

omod/src/main/webapp/dictionary/conceptForm.jsp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -498,7 +498,7 @@
498498
<tr>
499499
<td valign="top">
500500
<select class="largeWidth" size="6" id="answerNames" multiple="multiple" onKeyUp="listKeyPress('answerNames', 'answerIds', ' ', event)">
501-
<c:forEach items="${command.conceptAnswers}" var="answer">
501+
<c:forEach items="${command.conceptAnswers}" var="answer" >
502502
<option value="<c:out value="${answer.key}" />"><c:out value="${answer.value}" /> (${fn:substring(answer.key, 0, fn:indexOf(answer.key, '^'))})</option>
503503
</c:forEach>
504504
</select>

0 commit comments

Comments
 (0)