This is an automated email from the ASF dual-hosted git repository.
cshannon pushed a commit to branch activemq-5.19.x
in repository https://gitbox.apache.org/repos/asf/activemq.git
The following commit(s) were added to refs/heads/activemq-5.19.x by this push:
new 90c509f49b Adding missing jsp escapes (#2089) (#2093)
90c509f49b is described below
commit 90c509f49b88fa71a55020e7ebb5d7264d7804e9
Author: Christopher L. Shannon <[email protected]>
AuthorDate: Mon Jun 8 11:59:50 2026 -0400
Adding missing jsp escapes (#2089) (#2093)
(cherry picked from commit ea5a33ce87a203e0c8335f46f976e0a29c90f18a)
---
activemq-web-console/src/main/webapp/browse.jsp | 2 +-
activemq-web-console/src/main/webapp/queueConsumers.jsp | 3 +--
2 files changed, 2 insertions(+), 3 deletions(-)
diff --git a/activemq-web-console/src/main/webapp/browse.jsp
b/activemq-web-console/src/main/webapp/browse.jsp
index ce093e43da..796975a3cd 100644
--- a/activemq-web-console/src/main/webapp/browse.jsp
+++ b/activemq-web-console/src/main/webapp/browse.jsp
@@ -50,7 +50,7 @@
<td><a href="<c:url value="message.jsp">
<c:param name="id" value="${row.JMSMessageID}" />
<c:param name="JMSDestination"
value="${requestContext.queueBrowser.JMSDestination}"/></c:url>"
- title="<c:out value="${row.properties}"/>">${row.JMSMessageID}</a></td>
+ title="<c:out value="${row.properties}"/>"><c:out
value="${row.JMSMessageID}"/></a>
<td><c:out value="${row.JMSCorrelationID}"/></td>
<td><jms:persistent message="${row}"/></td>
<td><c:out value="${row.JMSPriority}"/></td>
diff --git a/activemq-web-console/src/main/webapp/queueConsumers.jsp
b/activemq-web-console/src/main/webapp/queueConsumers.jsp
index 51613975a8..a36c259a76 100644
--- a/activemq-web-console/src/main/webapp/queueConsumers.jsp
+++ b/activemq-web-console/src/main/webapp/queueConsumers.jsp
@@ -62,7 +62,7 @@
<td>
<c:choose>
<c:when test="${row.network}">
- <a href="network.jsp">${row.clientId}</a><br/>
+ <a href="network.jsp"><c:out value="${row.clientId}"/></a><br/>
</c:when>
<c:otherwise>
<a href="<c:out
value="connection.jsp?connectionID=${row.clientId}"/>"><c:out
value="${row.clientId}" /></a><br/>
@@ -92,4 +92,3 @@
</body>
</html>
-
\ No newline at end of file
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]
For further information, visit: https://activemq.apache.org/contact