diff options
author | Alex Vitkov <alexvitkov98@gmail.com> | 2021-02-13 12:43:07 +0200 |
---|---|---|
committer | Alex Vitkov <alexvitkov98@gmail.com> | 2021-02-13 12:43:07 +0200 |
commit | 0c56b6431133facf94f83faf920cfa58e311dd19 (patch) | |
tree | 7d18ff74ccc139bbbb9bdcdb4412e1eea42c4d37 /php/logout.php | |
parent | f10a55259c4eda39e909bc54ac97744a4d053b8a (diff) | |
parent | e4c0f4eeaa3f1a0707d6bf668619bb48b77c43ce (diff) | |
download | fileup-0c56b6431133facf94f83faf920cfa58e311dd19.tar.gz |
Merge branch 'master' of https://github.com/alexvitkov/india
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: /'); ?> |