Skip to content

Commit

Permalink
Fix: 3.1.2.9 (#120)
Browse files Browse the repository at this point in the history
  • Loading branch information
mseaton authored Jun 8, 2024
1 parent 92ca89c commit f344d9a
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion omod/src/main/webapp/editIdentifierSource.jsp
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
<spring:message code="general.new" />: <spring:message code="idgen.${source['class'].name}" />
</c:when>
<c:otherwise>
<spring:message code="general.edit" />: ${source.name}
<spring:message code="general.edit" />: <c:out value='${source.name}'/>
</c:otherwise>
</c:choose>
<spring:message code="idgen.general.for"/> <c:out value='${source.identifierType.name}'/>
Expand Down
10 changes: 5 additions & 5 deletions omod/src/main/webapp/viewIdentifierSource.jsp
Original file line number Diff line number Diff line change
Expand Up @@ -10,20 +10,20 @@
.underlineRow td {border-bottom: 1px solid black;}
</style>

<h3>${source.identifierType.name}: ${source.name}</h3>
<h3>${source.identifierType.name}: <c:out value='${source.name}'/></h3>

<table id="sourceTable">
<tr>
<th><spring:message code="idgen.sourceName" /></th>
<td>
${source.name}
<c:out value='${source.name}'/>
&nbsp;&nbsp;
(<a href="editIdentifierSource.form?source=${source.id}"><spring:message code="general.edit" />)
</td>
</tr>
<tr>
<th><spring:message code="general.description" />:</th>
<td>${source.description}</td>
<td><c:out value='${source.description}'/></td>
</tr>
<tr>
<th><spring:message code="PatientIdentifier.identifierType" /></th>
Expand Down Expand Up @@ -115,8 +115,8 @@
<c:if test="${!empty source.source}">
<br/>
<form action="addIdentifiersFromSource.form" method="post" enctype="multipart/form-data">
The pool can also be filled by directly connecting to Identifier Source ${source.source.name}.<br/>
Quantity to upload from ${source.source.name}:
The pool can also be filled by directly connecting to Identifier Source <c:out value='${source.source.name}'/>.<br/>
Quantity to upload from <c:out value='${source.source.name}'/>:
<input type="hidden" name="source" value="${source.id}"/>
<input type="input" name="batchSize"/>
<input type="submit" value="Upload"/>
Expand Down

0 comments on commit f344d9a

Please sign in to comment.