mirror of
https://git.code.sf.net/p/seeddms/code
synced 2025-03-12 00:45:34 +00:00
- output password expiration
This commit is contained in:
parent
a9d8f415ae
commit
7d4c363e5a
|
@ -55,7 +55,14 @@ print "<td>".htmlspecialchars($user->getEmail())."</td>\n";
|
|||
print "</tr>\n<tr>\n";
|
||||
print "<td>".getMLText("comment")." : </td>\n";
|
||||
print "<td>".htmlspecialchars($user->getComment())."</td>\n";
|
||||
print"</tr>\n</table>\n";
|
||||
print "</tr>\n";
|
||||
if($settings->_passwordExpiration > 0) {
|
||||
print "<tr>\n";
|
||||
print "<td>".getMLText("password_expiration")." : </td>\n";
|
||||
print "<td>".htmlspecialchars($user->getPwdExpiration())."</td>\n";
|
||||
print "</tr>\n";
|
||||
}
|
||||
print "</table>\n";
|
||||
|
||||
UI::contentContainerEnd();
|
||||
UI::htmlEndPage();
|
||||
|
|
Loading…
Reference in New Issue
Block a user