afterlogin
Build and push / Pulling repo on server (push) Successful in 3s Details

This commit is contained in:
Chris 2023-10-30 23:25:50 +01:00
parent ff31a10882
commit 88d1936264
2 changed files with 2 additions and 1 deletions

View File

@ -30,7 +30,6 @@ $GLOBALS['url'] = $url;
//echo print_r(['url'=>$url,'server'=>$_SERVER,'request'=>$_REQUEST,'cookie'=>$_COOKIE,'session'=>$_SESSION],true);
autoLoginCheck();
var_dump($_SESSION);
$response = callHook($url);

View File

@ -30,6 +30,8 @@ class User extends Model {
$_SESSION['user'] = $this;
$_SESSION['userid'] = $this->id;
var_dump($_SESSION['user']);
$_SESSION['user']->save();
}