Skip to content

Commit

Permalink
fix 3.3.1 (#194)
Browse files Browse the repository at this point in the history
  • Loading branch information
slubwama authored Aug 13, 2024
1 parent fd7227c commit 41d0c1d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions omod/src/main/webapp/login.jsp
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
function goToPreviousPage(){
<c:choose>
<c:when test="${not empty refererUrl}">
window.location= "${refererUrl}";
window.location = '<c:out value="${refererUrl}" />';
</c:when>
<c:otherwise>
//unfortunately this can bring us back to the login page, probably should go to index page
Expand Down Expand Up @@ -54,7 +54,7 @@
<openmrs:message code="general.unableToViewPage" />
<c:if test="${not empty reason}">
<br />
<span>${reason}</span>
<span><c:out value="${reason}" /></span>
</c:if>

<br /><br />
Expand Down

0 comments on commit 41d0c1d

Please sign in to comment.