This is an automated email from the ASF dual-hosted git repository.

cshannon pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/activemq.git


The following commit(s) were added to refs/heads/main by this push:
     new ea5a33ce87 Adding missing jsp escapes (#2089)
ea5a33ce87 is described below

commit ea5a33ce87a203e0c8335f46f976e0a29c90f18a
Author: Christopher L. Shannon <[email protected]>
AuthorDate: Mon Jun 8 11:50:26 2026 -0400

    Adding missing jsp escapes (#2089)
---
 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 39a5f356c8..6f3f969939 100644
--- a/activemq-web-console/src/main/webapp/browse.jsp
+++ b/activemq-web-console/src/main/webapp/browse.jsp
@@ -48,7 +48,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 ccefb8994f..c04372f336 100644
--- a/activemq-web-console/src/main/webapp/queueConsumers.jsp
+++ b/activemq-web-console/src/main/webapp/queueConsumers.jsp
@@ -60,7 +60,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/>
@@ -90,4 +90,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


Reply via email to