Commit b8e66ea6 authored by Derek DeMoro's avatar Derek DeMoro Committed by derek

Fixed compilation error.


git-svn-id: http://svn.igniterealtime.org/svn/repos/messenger/trunk@751 b35dd754-fafc-0310-a699-88a17e54d16e
parent 30eeb75a
......@@ -29,7 +29,7 @@
<td width="1%" nowrap><%= count %></td>
<td width="10%" nowrap>
<% String name = sess.getAddress().getNode(); %>
<a href="session-details.jsp?jid=<%= URLEncoder.encode(sess.getAddress(), "UTF-8") %>" title="Click for more info..."
<a href="session-details.jsp?jid=<%= URLEncoder.encode(sess.getAddress().toString(), "UTF-8") %>" title="Click for more info..."
><%= ((name != null && !"".equals(name)) ? name : "<i>Anonymous</i>") %></a>
<% if (sess.getConnection().isSecure()) { %>
......@@ -152,7 +152,7 @@
</td>
<td width="1%" nowrap align="center" style="border-right:1px #ccc solid;">
<a href="session-summary.jsp?jid=<%= URLEncoder.encode(sess.getAddress(), "UTF-8") %>&close=true"
<a href="session-summary.jsp?jid=<%= URLEncoder.encode(sess.getAddress().toString(), "UTF-8") %>&close=true"
title="Click to kill session..."
onclick="return confirm('Are you sure you want to close this connection?');"
><img src="images/delete-16x16.gif" width="16" height="16" border="0"></a>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment