Details
-
Type:
Bug
-
Status:
Closed
-
Priority:
Trivial
-
Resolution: Fixed
-
Affects Version/s: 1.1.2
-
Fix Version/s: 1.1.3
-
Component/s: Web Interface
-
Labels:None
-
Patch Submitted:Yes
Description
The footer doesn't stretch all the way across the page for the repositoryGroups page. This is because of unclosed tags in the jsp file. Looking at the last few lines of the file http://svn.apache.org/repos/asf/archiva/trunk/archiva-modules/archiva-web/archiva-webapp/src/main/webapp/WEB-INF/jsp/admin/repositoryGroups.jsp
repositoryGroups.jsp
</div> <%-- repository group --%> </c:forEach> </div> <%-- admin --%> </div> <%-- content area --%> </c:otherwise> </c:choose>
The contentArea div is closed too early, and the body and html elements are never closed. These lines should be changed to:
repositoryGroups.jsp
</div> <%-- repository group --%> </c:forEach> </div> <%-- admin --%> </c:otherwise> </c:choose> </div> <%-- content area --%> </body> </html>
Thanks Doron. We can apply this later, but it is easier if you supply a patch attachment