Browse Source

Update admin-user-debug.jsp

the Last Login Time on the user debug page information is wrong
changed from: getPasswordLastModifiedTime() to getLastLoginTime()
subst4nc3 7 years ago
parent
commit
7bbbc5af8b
1 changed files with 3 additions and 3 deletions
  1. 3 3
      webapp/src/main/webapp/WEB-INF/jsp/admin-user-debug.jsp

+ 3 - 3
webapp/src/main/webapp/WEB-INF/jsp/admin-user-debug.jsp

@@ -100,9 +100,9 @@
             <tr>
                 <td class="key">Last Login Time</td>
                 <td>
-                    <%=JspUtility.friendlyWrite(pageContext, userInfo.getPasswordLastModifiedTime())%>
-                    <% if ( userInfo.getPasswordLastModifiedTime() != null ) { %>
-                    ( <%=TimeDuration.fromCurrent(userInfo.getPasswordLastModifiedTime()).asCompactString()%> )
+                    <%=JspUtility.friendlyWrite(pageContext, userInfo.getLastLoginTime())%>
+                    <% if ( userInfo.getLastLoginTime() != null ) { %>
+                    ( <%=TimeDuration.fromCurrent(userInfo.getLastLoginTime()).asCompactString()%> )
                     <% } %>
                 </td>
             </tr>