--- a/src/main/webapp/WEB-INF/jspf/version-list.jspf Wed Aug 18 16:02:40 2021 +0200 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,14 +0,0 @@ -<%@taglib prefix="fn" uri="http://java.sun.com/jsp/jstl/functions" %> - -<select id="issue-${fieldname}" name="${fieldname}" multiple> - <c:forEach var="vselitem" items="${selectionList}"> - <option value="${vselitem.id}" - <c:forEach var="v" items="${data}"> - <c:if test="${v eq vselitem}">selected</c:if> - </c:forEach> - <c:if test="${vid eq vselitem.id}">selected</c:if> - > - <c:out value="${vselitem.name}" /> - </option> - </c:forEach> -</select>