src/main/webapp/WEB-INF/jspf/version-list.jsp

changeset 90
2c74e36752f9
parent 83
24a3596b8f98
--- a/src/main/webapp/WEB-INF/jspf/version-list.jsp	Sun Jun 21 11:43:08 2020 +0200
+++ b/src/main/webapp/WEB-INF/jspf/version-list.jsp	Sun Jun 21 11:56:36 2020 +0200
@@ -1,13 +1,13 @@
 <%@taglib prefix="fn" uri="http://java.sun.com/jsp/jstl/functions" %>
 
 <select name="${fieldname}" multiple>
-    <c:forEach var="version" items="${versions}">
-        <option value="${version.id}"
+    <c:forEach var="vselitem" items="${selectionList}">
+        <option value="${vselitem.id}"
                 <c:forEach var="v" items="${data}">
-                    <c:if test="${v eq version}">selected</c:if>
+                    <c:if test="${v eq vselitem}">selected</c:if>
                 </c:forEach>
         >
-            <c:out value="${version.name}" />
+            <c:out value="${vselitem.name}" />
         </option>
     </c:forEach>
 </select>

mercurial