From: mensonge Date: Wed, 9 Jan 2008 17:50:01 +0000 (+0000) Subject: Bug corrected: cookie not deleted when logout X-Git-Tag: v0.88~50^2~9 X-Git-Url: https://gitweb.fluxo.info/?a=commitdiff_plain;h=980d240e6263346cfc624acbd1d3097c8e28a885;p=semanticscuttle.git Bug corrected: cookie not deleted when logout git-svn-id: https://semanticscuttle.svn.sourceforge.net/svnroot/semanticscuttle/trunk@4 b3834d28-1941-0410-a4f8-b48e95affb8f --- diff --git a/services/userservice.php b/services/userservice.php index b585388..4a7cd4f 100644 --- a/services/userservice.php +++ b/services/userservice.php @@ -158,7 +158,7 @@ class UserService { $id = $_SESSION[$this->getSessionKey()] = $row[$this->getFieldName('primary')]; if ($remember) { $cookie = $id .':'. md5($username.$password); - setcookie($this->cookiekey, $cookie, time() + $this->cookietime); + setcookie($this->cookiekey, $cookie, time() + $this->cookietime, '/'); } return true; } else { @@ -167,8 +167,8 @@ class UserService { } function logout() { - @setcookie($this->cookiekey, NULL, time() - 1); - unset($_COOKIE[$this->cookiekey]); + @setcookie($this->getCookiekey(), '', time() - 1, '/'); + unset($_COOKIE[$this->getCookiekey()]); session_unset(); $this->getCurrentUser(TRUE, false); }