Skip to content

Commit

Permalink
Prevent double html escape
Browse files Browse the repository at this point in the history
  • Loading branch information
dkayiwa authored Jan 20, 2025
1 parent 5d5ac5e commit 4c0be1d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions omod/src/main/webapp/admin/maintenance/settings.jsp
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
<c:choose>
<c:when test="${fn:length(item.globalProperty.propertyValue) > 20}">
<form:textarea
path="settings[${status.index}].globalProperty.propertyValue"
path="settings[${status.index}].globalProperty.propertyValue" htmlEscape="false"
cols="50"/></td>
</c:when>
<c:otherwise>
Expand Down Expand Up @@ -72,4 +72,4 @@
</tr>
</table>

<%@ include file="/WEB-INF/view/module/legacyui/template/footer.jsp"%>
<%@ include file="/WEB-INF/view/module/legacyui/template/footer.jsp"%>

0 comments on commit 4c0be1d

Please sign in to comment.