Skip to content

Commit

Permalink
Fix the href link error on muc-service-summary.jsp
Browse files Browse the repository at this point in the history
The room count href link on muc-service-summary.jsp jump to muc-room-summary.jsp add parameter use '==', this will jump to the default page on muc-room-summary.jsp.
  • Loading branch information
iarwen authored and guusdk committed Jul 4, 2023
1 parent bff2f7f commit 4ed94b7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion xmppserver/src/main/webapp/muc-service-summary.jsp
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,7 @@
<%= StringUtils.escapeHTMLTags(service.getDescription()) %> &nbsp;
</td>
<td style="width: 5%">
<a href="muc-room-summary.jsp?mucname==<%= URLEncoder.encode(service.getServiceName(), "UTF-8") %>"><%= service.getNumberChatRooms() %></a>
<a href="muc-room-summary.jsp?mucname=<%= URLEncoder.encode(service.getServiceName(), "UTF-8") %>"><%= service.getNumberChatRooms() %></a>
</td>
<td style="width: 5%">
<%= service.getNumberConnectedUsers() %>
Expand Down

0 comments on commit 4ed94b7

Please sign in to comment.