diff options
author | adam <adam@> | 2021-02-13 12:13:13 +0200 |
---|---|---|
committer | adam <adam@> | 2021-02-13 12:13:13 +0200 |
commit | 232ec00948655b8c68035368400b0a79c101976b (patch) | |
tree | 23db4dd54cbfd84a98b0315712529c4de073f9b7 /php/logout.php | |
parent | 508baff21febbd3676ce29d4d45e326d8a11cc4b (diff) | |
download | fileup-232ec00948655b8c68035368400b0a79c101976b.tar.gz |
removed usename from session
Diffstat (limited to 'php/logout.php')
-rw-r--r-- | php/logout.php | 2 |
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: /'); ?> |