Commit 3d569e25 authored by Guus der Kinderen's avatar Guus der Kinderen Committed by Christian Schudt

Admin Console: prevent NPE on missing user creation date.

Some user providers might not provide a creation date for each user. There's no
reason that the Admin Console should not be able to cope with that.
parent e468a51a
......@@ -261,7 +261,7 @@
%>
</td>
<td width="12%">
<%= JiveGlobals.formatDate(user.getCreationDate()) %>
<%= user.getCreationDate() != null ? JiveGlobals.formatDate(user.getCreationDate()) : "&nbsp;" %>
</td>
<td width="23%">
<% 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