Changeset 3525
- Timestamp:
- 20/05/04 11:51:35 (4 years ago)
- Files:
-
- trunk/intermine/src/web/main.jsp (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/intermine/src/web/main.jsp
r3520 r3525 14 14 <c:if test="${!empty navigation}"> 15 15 <c:forEach items="${navigation}" var="entry" varStatus="status"> 16 <html:link action="/mainChange?method=changePath&prefix=${entry.value}&path=${QUERY[entry.value].type}"> 16 <fmt:message key="query.changePath" var="changePathTitle"> 17 <fmt:param value="${entry.key}"/> 18 </fmt:message> 19 <html:link action="/mainChange?method=changePath&prefix=${entry.value}&path=${QUERY[entry.value].type}" 20 title="${changePathTitle}"> 17 21 <c:out value="${entry.key}"/> 18 22 </html:link> … … 112 116 </c:when> 113 117 <c:otherwise> 114 <html:link action="/mainChange?method=changePath&prefix=${node.path}&path=${node.type}"> 118 <fmt:message key="query.changePath" var="changePathTitle"> 119 <fmt:param value="${node.type}"/> 120 </fmt:message> 121 <html:link action="/mainChange?method=changePath&prefix=${node.path}&path=${node.type}" 122 title="${changePathTitle}"> 115 123 <c:out value="${node.type}"/> 116 124 </html:link>
