Commit f2a51655 authored by Matt Tucker's avatar Matt Tucker Committed by matt

UI tweak.


git-svn-id: http://svn.igniterealtime.org/svn/repos/messenger/trunk@735 b35dd754-fafc-0310-a699-88a17e54d16e
parent b5a175e1
...@@ -109,7 +109,7 @@ Sorted by Room ID ...@@ -109,7 +109,7 @@ Sorted by Room ID
<thead> <thead>
<tr> <tr>
<th>&nbsp;</th> <th>&nbsp;</th>
<th>Room ID</th> <th>Room</th>
<th>Description</th> <th>Description</th>
<th>Persistent</th> <th>Persistent</th>
<th>Users</th> <th>Users</th>
...@@ -141,7 +141,12 @@ Sorted by Room ID ...@@ -141,7 +141,12 @@ Sorted by Room ID
<%= i %> <%= i %>
</td> </td>
<td width="45%" valign="middle"> <td width="45%" valign="middle">
<%= room.getName() %> <% if (room.getName().equals(room.getNaturalLanguageName())) { %>
<%= room.getName() %>
<% }
else { %>
<%= room.getNaturalLanguageName() %> (<%= room.getName() %>)
<% } %>
</td> </td>
<td width="45%" valign="middle"> <td width="45%" valign="middle">
<%= room.getDescription() %> <%= room.getDescription() %>
......
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