Login Redirect

This commit is contained in:
GamerClassN7 2020-10-25 17:21:55 +01:00
parent 6b08b2785f
commit 513b13dcb8
1 changed files with 1 additions and 5 deletions

View File

@ -49,12 +49,8 @@ class UserManager
setcookie ("rememberMe", self::setEncryptedCookie($user['username']), time () + (30 * 24 * 60 * 60 * 1000), BASEDIR, $_SERVER['HTTP_HOST'], 1);
}
$_SESSION['user']['id'] = $user['user_id'];
$page = "";
if ($user["startPage"] == 1) {
$page = "dashboard";
}
unset($_POST['login']);
return $page;
return "";
} else {
throw new PDOException("Heslo není správné!");
}