Add last_login to single user mode

This commit is contained in:
powerivq 2022-08-31 00:41:57 -07:00
parent c0e77241d3
commit f0f44c6ea5
1 changed files with 1 additions and 0 deletions

View File

@ -122,6 +122,7 @@ class UserHelper {
$_SESSION["csrf_token"] = bin2hex(get_random_bytes(16));
$_SESSION["ip_address"] = UserHelper::get_user_ip();
$_SESSION["last_login_update"] = time();
return true;
}