aboutsummaryrefslogtreecommitdiffstats
path: root/php/logout.php
diff options
context:
space:
mode:
Diffstat (limited to 'php/logout.php')
-rw-r--r--php/logout.php2
1 files changed, 1 insertions, 1 deletions
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: /');
?>