summaryrefslogtreecommitdiff
path: root/logout.php
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2005-11-19 12:31:20 +0100
committerAndrew Dolgov <[email protected]>2005-11-19 12:31:20 +0100
commitac6080ece78a53fb27fdd67e939bf46c92e40baf (patch)
treeb027d21ee99fad9f2fec035e7d026653a0ed1296 /logout.php
parent6c56687e527322a6fc40e0f07bf8969ea7a3f7b3 (diff)
remove access_level session var just in case
Diffstat (limited to 'logout.php')
-rw-r--r--logout.php5
1 files changed, 3 insertions, 2 deletions
diff --git a/logout.php b/logout.php
index ae2f65508..c43d86cb0 100644
--- a/logout.php
+++ b/logout.php
@@ -3,9 +3,10 @@
$_SESSION["uid"] = null;
$_SESSION["name"] = null;
-
+ $_SESSION["access_level"] = null;
+
session_destroy();
- header("Location: tt-rss.php");
+ header("Location: login.php");
?>