forked from extern/egroupware
Fixed account last login information not being displayed. I think this was submitted on SF, but I can't find the ticket to close it out.
This commit is contained in:
parent
1844bdcd26
commit
4721a92a48
@ -70,7 +70,7 @@
|
||||
}
|
||||
|
||||
// Last login time
|
||||
if ($userData['account_lastlogin'])
|
||||
if ($userData['lastlogin'])
|
||||
{
|
||||
$t->set_var('account_lastlogin',$phpgw->common->show_date($userData['lastlogin']));
|
||||
}
|
||||
@ -80,7 +80,7 @@
|
||||
}
|
||||
|
||||
// Last login IP
|
||||
if ($userData['account_lastloginfrom'])
|
||||
if ($userData['lastloginfrom'])
|
||||
{
|
||||
$t->set_var('account_lastloginfrom',$userData['lastloginfrom']);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user