Skip to content
Snippets Groups Projects
Commit e9621d07 authored by Andreas Gohr's avatar Andreas Gohr
Browse files

reopen the session in auth_logoff FS#1484

To clean data from the session correctly on logout, the session needs
to be reopened.

darcs-hash:20081011092157-7ad00-e5cc905b6e04b13fe667690c0e6aad68524254f1.gz
parent 176ae32b
No related branches found
No related tags found
No related merge requests found
......@@ -281,6 +281,9 @@ function auth_logoff(){
global $INFO, $ID;
global $auth;
// reopen session
@session_start();
if(isset($_SESSION[DOKU_COOKIE]['auth']['user']))
unset($_SESSION[DOKU_COOKIE]['auth']['user']);
if(isset($_SESSION[DOKU_COOKIE]['auth']['pass']))
......@@ -300,6 +303,9 @@ function auth_logoff(){
if($auth && $auth->canDo('logoff')){
$auth->logOff();
}
// close session again
session_write_close();
}
/**
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment