Skip to content

Commit

Permalink
https://issues.apache.org/jira/browse/AMQ-6468
Browse files Browse the repository at this point in the history
Fixing JSTL tags in JSP pages

(cherry picked from commit c1157fe)
  • Loading branch information
cshannon authored and dkulp committed Dec 14, 2016
1 parent 4fc1663 commit e16ed24
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion activemq-web-console/src/main/webapp/queueConsumers.jsp
Expand Up @@ -63,7 +63,7 @@
<a href="network.jsp">${row.clientId}</a><br/>
</c:when>
<c:otherwise>
<a href="<c:url value="connection.jsp?connectionID=${row.clientId}"/>"><c:out value="${row.clientId}" /></a><br/>
<a href="<c:out value="connection.jsp?connectionID=${row.clientId}"/>"><c:out value="${row.clientId}" /></a><br/>
</c:otherwise>
</c:choose>
<c:out value="${row.connectionId}" />
Expand Down
2 changes: 1 addition & 1 deletion activemq-web-console/src/main/webapp/queueProducers.jsp
Expand Up @@ -49,7 +49,7 @@
<c:forEach items="${requestContext.queueProducerQuery.producers}" var="row">
<tr>
<td>
<a href="<c:url value="connection.jsp?connectionID=${row.clientId}"/>"><c:out value="${row.clientId}" /></a><br/>
<a href="<c:out value="connection.jsp?connectionID=${row.clientId}"/>"><c:out value="${row.clientId}" /></a><br/>
<br>
<c:out value="${row.connectionId}" />
</td>
Expand Down
6 changes: 3 additions & 3 deletions activemq-web-console/src/main/webapp/subscribers.jsp
Expand Up @@ -97,7 +97,7 @@
<c:forEach items="${requestContext.brokerQuery.durableTopicSubscribers}" var="row">
<tr>
<td>
<a href="<c:url value="connection.jsp?connectionID=${row.clientId}"/>">
<a href="<c:out value="connection.jsp?connectionID=${row.clientId}"/>">
<form:tooltip text="${row.clientId}" length="10"/>
</a>
</td>
Expand Down Expand Up @@ -145,7 +145,7 @@
<c:forEach items="${requestContext.brokerQuery.inactiveDurableTopicSubscribers}" var="row">
<tr>
<td>
<a href="<c:url value="connection.jsp?connectionID=${row.clientId}"/>">
<a href="<c:out value="connection.jsp?connectionID=${row.clientId}"/>">
<form:tooltip text="${row.clientId}" length="10"/>
</a>
</td>
Expand Down Expand Up @@ -194,7 +194,7 @@
<c:forEach items="${requestContext.brokerQuery.nonDurableTopicSubscribers}" var="row">
<tr>
<td>
<a href="<c:url value="connection.jsp?connectionID=${row.clientId}"/>">
<a href="<c:out value="connection.jsp?connectionID=${row.clientId}"/>">
<form:tooltip text="${row.clientId}" length="10"/>
</a>
</td>
Expand Down
2 changes: 1 addition & 1 deletion activemq-web-console/src/main/webapp/topicProducers.jsp
Expand Up @@ -49,7 +49,7 @@
<c:forEach items="${requestContext.topicProducerQuery.producers}" var="row">
<tr>
<td>
<a href="<c:url value="connection.jsp?connectionID=${row.clientId}"/>"><c:out value="${row.clientId}" /></a><br/>
<a href="<c:out value="connection.jsp?connectionID=${row.clientId}"/>"><c:out value="${row.clientId}" /></a><br/>
<br>
<c:out value="${row.connectionId}" />
</td>
Expand Down
2 changes: 1 addition & 1 deletion activemq-web-console/src/main/webapp/topicSubscribers.jsp
Expand Up @@ -53,7 +53,7 @@
<c:forEach items="${requestContext.topicSubscriberQuery.subscribers}" var="row">
<tr>
<td>
<a href="<c:url value="connection.jsp?connectionID=${row.clientId}"/>"><c:out value="${row.clientId}" /></a><br/>
<a href="<c:out value="connection.jsp?connectionID=${row.clientId}"/>"><c:out value="${row.clientId}" /></a><br/>
<br>
<c:out value="${row.connectionId}" />
</td>
Expand Down

0 comments on commit e16ed24

Please sign in to comment.