Commit c9044ee1 authored by Armando Jagucki's avatar Armando Jagucki Committed by ajagucki

JM-1409: A bit safer if-statement for the fix.

git-svn-id: http://svn.igniterealtime.org/svn/repos/openfire/trunk@10619 b35dd754-fafc-0310-a699-88a17e54d16e
parent f8643587
...@@ -195,7 +195,7 @@ ...@@ -195,7 +195,7 @@
<% } %> <% } %>
</td> </td>
<td width="45%" valign="middle"> <td width="45%" valign="middle">
<% if (!room.getDescription().equals("")) { %> <% if (!"".equals(room.getDescription())) { %>
<%= room.getDescription() %> <%= room.getDescription() %>
<% } <% }
else { %> else { %>
......
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