Skip to content

Commit

Permalink
Added fix for EMPT65
Browse files Browse the repository at this point in the history
  • Loading branch information
Parth59 committed Mar 13, 2021
1 parent ba42f5c commit 044662e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion omod/src/main/webapp/template/headerFull.jsp
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@
</openmrs:forEachAlert>

<c:if test="${msg != null}">
<div id="openmrs_msg"><openmrs:message code="${msg}" text="${msg}" arguments="${msgArgs}" htmlEscape="false" /></div>
<div id="openmrs_msg"><openmrs:message code="<c:out value='${msg}'/>" text="<c:out value='${msg}'/>" arguments="<c:out value='${msgArgs}'/>" htmlEscape="false" /></div>
</c:if>
<c:if test="${err != null}">
<div id="openmrs_error"><openmrs:message code="${err}" text="${err}" arguments="${errArgs}" htmlEscape="false"/></div>
Expand Down
2 changes: 1 addition & 1 deletion omod/src/main/webapp/template/headerMinimal.jsp
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@
<div id="pageBody">
<div id="contentMinimal">
<c:if test="${msg != null}">
<div id="openmrs_msg"><openmrs:message code="${msg}" text="${msg}" arguments="${msgArgs}" htmlEscape="false" /></div>
<div id="openmrs_msg"><openmrs:message code="<c:out value='${msg}'/>" text="<c:out value='${msg}'/>" arguments="<c:out value='${msgArgs}'/>" htmlEscape="false" /></div>
</c:if>
<c:if test="${err != null}">
<div id="openmrs_error"><openmrs:message code="${err}" text="${err}" arguments="${errArgs}"/></div>
Expand Down

0 comments on commit 044662e

Please sign in to comment.