Commit 81dfaf5c authored by daryl herzmann's avatar daryl herzmann

Merge pull request #547 from guusdk/master

Admin Console: prevent NPE on missing user creation date.
parents 45394287 2746a7f4
...@@ -261,7 +261,7 @@ ...@@ -261,7 +261,7 @@
%> %>
</td> </td>
<td width="12%"> <td width="12%">
<%= JiveGlobals.formatDate(user.getCreationDate()) %> <%= user.getCreationDate() != null ? JiveGlobals.formatDate(user.getCreationDate()) : "&nbsp;" %>
</td> </td>
<td width="23%"> <td width="23%">
<% long logoutTime = presenceManager.getLastActivity(user); <% long logoutTime = presenceManager.getLastActivity(user);
......
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