[MRM-400] improve appearance of selected tab by removing unnecessary link

git-svn-id: https://svn.apache.org/repos/asf/maven/archiva/trunk@586846 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Brett Porter 2007-10-21 03:45:59 +00:00
parent a34338bc47
commit 381948f69e
1 changed files with 12 additions and 6 deletions

View File

@ -34,13 +34,19 @@
<c:set var="text">
<jsp:doBody/>
</c:set>
<a href="${url}">
<c:choose>
<c:when test="${currentUrl == url}">
<b>${text}</b>
<b>
${text}
</b>
</c:when>
<c:otherwise>
<a href="${url}">
${text}
</a>
</c:otherwise>
</c:choose>
</a>