aboutsummaryrefslogtreecommitdiffstats
path: root/php
diff options
context:
space:
mode:
Diffstat (limited to 'php')
-rw-r--r--php/login.php2
-rw-r--r--php/logout.php2
2 files changed, 1 insertions, 3 deletions
diff --git a/php/login.php b/php/login.php
index c26445e..6fb3909 100644
--- a/php/login.php
+++ b/php/login.php
@@ -13,14 +13,12 @@ if(gettype($username)!="string" || gettype($password)!="string")
die("You didn't specify the pass or the username");
}
-$database=new Database();
$user=$database->authenticate($username,$password);
if(!$user)
{
die("Password or username is incorrect");
}
-$_SESSION['username'] = $user->username;
$_SESSION['user_object'] = $user;
header('Location: /');
diff --git a/php/logout.php b/php/logout.php
index 9a4cdd7..d37b0a0 100644
--- a/php/logout.php
+++ b/php/logout.php
@@ -5,6 +5,6 @@
// which will log the user out of our webpage
session_start();
-unset($_SESSION['username']);
+unset($_SESSION['user_object']);
header('Location: /');
?>