diff options
author | Nicolas LÅ“uillet <nicolas.loeuillet@gmail.com> | 2013-09-20 09:32:49 +0200 |
---|---|---|
committer | Nicolas LÅ“uillet <nicolas.loeuillet@gmail.com> | 2013-09-20 09:32:49 +0200 |
commit | 705250b93dc71ae91d3c305b51e7a20611873805 (patch) | |
tree | 5a839dca431e69aab711ebd48ab7cd712f3792de /inc/3rdparty | |
parent | 0d64be15de12cd949fc9b9d2b8352a1815da965a (diff) | |
download | wallabag-705250b93dc71ae91d3c305b51e7a20611873805.tar.gz wallabag-705250b93dc71ae91d3c305b51e7a20611873805.tar.zst wallabag-705250b93dc71ae91d3c305b51e7a20611873805.zip |
fixes with new session class
Diffstat (limited to 'inc/3rdparty')
-rw-r--r-- | inc/3rdparty/Session.class.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/inc/3rdparty/Session.class.php b/inc/3rdparty/Session.class.php index 08126bad..df913a06 100644 --- a/inc/3rdparty/Session.class.php +++ b/inc/3rdparty/Session.class.php | |||
@@ -136,7 +136,7 @@ class Session | |||
136 | */ | 136 | */ |
137 | public static function logout() | 137 | public static function logout() |
138 | { | 138 | { |
139 | unset($_SESSION['uid'], $_SESSION['ip'], $_SESSION['expires_on']); | 139 | unset($_SESSION['uid'],$_SESSION['ip'],$_SESSION['expires_on'],$_SESSION['tokens'], $_SESSION['login'], $_SESSION['pass'], $_SESSION['poche_user']); |
140 | } | 140 | } |
141 | 141 | ||
142 | /** | 142 | /** |