Set the login date for every identity of the user.

This commit is contained in:
Michael Vogel 2015-05-09 23:47:45 +02:00
parent da23543ffd
commit 5d1bd96076
1 changed files with 10 additions and 1 deletions

View File

@ -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);