Set the login date for every identity of the user.
This commit is contained in:
parent
da23543ffd
commit
5d1bd96076
|
@ -86,6 +86,15 @@ function authenticate_success($user_record, $login_initial = false, $interactive
|
|||
dbesc($l),
|
||||
intval($_SESSION['uid'])
|
||||
);
|
||||
|
||||
// Set the login date for all identities of the user
|
||||
q("UPDATE `user` SET `login_date` = '%s' WHERE `password` = '%s' AND `email` = '%s' AND `account_removed` = 0",
|
||||
dbesc(datetime_convert()),
|
||||
dbesc($master_record['password']),
|
||||
dbesc($master_record['email'])
|
||||
);
|
||||
|
||||
|
||||
}
|
||||
if($login_initial) {
|
||||
call_hooks('logged_in', $a->user);
|
||||
|
|
Loading…
Reference in a new issue