Skip to content

Commit

Permalink
Fixed role names not being URL encoded under Role Management list lin…
Browse files Browse the repository at this point in the history
…ks (openmrs#132)
  • Loading branch information
icrc-psousa committed Dec 17, 2020
1 parent 5eb5c10 commit 0677be1
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion omod/src/main/webapp/admin/users/roleList.jsp
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,10 @@
</c:if>
</td>
<td style="white-space: nowrap">
<a href="role.form?roleName=<c:out value="${map.key.role}"/>">
<c:url value="role.form" var="url">
<c:param name="roleName" value="${map.key.role}" />
</c:url>
<a href="${url}">
<c:out value="${map.key.role}"/>
</a>
</td>
Expand Down

0 comments on commit 0677be1

Please sign in to comment.