undebug
All checks were successful
Build and push / Pulling repo on server (push) Successful in 3s

This commit is contained in:
2023-10-30 23:13:44 +01:00
parent 312c4a1d27
commit e413c7f8fb
2 changed files with 4 additions and 3 deletions

View File

@ -26,10 +26,11 @@ class User extends Model {
if(!$this->id) return false;
$this->load();
$this->last_login = $this->getDateTime();
$this->save();
$_SESSION['user'] = $this;
$_SESSION['userid'] = $this->id;
$_SESSION['user']->save();
}
function logout()