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

fixed logoff cookie problem

Ignore-this: 53d4440e4bffdcf66330ffc6b2b3372a

darcs-hash:20090130090624-7ad00-a6f6da5b1d42ac48cf4906e40addbd15e995125c.gz
parent c5cfca61
No related branches found
No related tags found
No related merge requests found
......@@ -292,9 +292,9 @@ function auth_logoff($keepbc=false){
$USERINFO=null; //FIXME
if (version_compare(PHP_VERSION, '5.2.0', '>')) {
setcookie(DOKU_COOKIE,'',time()-600000,DOKU_REL,($conf['securecookie'] && is_ssl()),true);
setcookie(DOKU_COOKIE,'',time()-600000,DOKU_REL,'',($conf['securecookie'] && is_ssl()),true);
}else{
setcookie(DOKU_COOKIE,'',time()-600000,DOKU_REL,($conf['securecookie'] && is_ssl()));
setcookie(DOKU_COOKIE,'',time()-600000,DOKU_REL,'',($conf['securecookie'] && is_ssl()));
}
if($auth && $auth->canDo('logoff')){
......@@ -1001,7 +1001,6 @@ function auth_setCookie($user,$pass,$sticky) {
}else{
setcookie(DOKU_COOKIE,$cookie,$time,DOKU_REL,'',($conf['securecookie'] && is_ssl()));
}
// set session
$_SESSION[DOKU_COOKIE]['auth']['user'] = $user;
$_SESSION[DOKU_COOKIE]['auth']['pass'] = $pass;
......
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