Merge pull request #1550 from annando/1505-login-delegated

Set the login date for every identity of the user.
This commit is contained in:
fabrixxm 2015-05-10 08:47:01 +02:00
commit 34ace563a8

View file

@ -86,6 +86,15 @@ function authenticate_success($user_record, $login_initial = false, $interactive
dbesc($l), dbesc($l),
intval($_SESSION['uid']) 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) { if($login_initial) {
call_hooks('logged_in', $a->user); call_hooks('logged_in', $a->user);