fixed bug in auth cookie removal.
This commit is contained in:
@@ -206,9 +206,16 @@ class Auth {
|
||||
|
||||
static::$user = null;
|
||||
|
||||
Cookie::forget(Auth::user_key);
|
||||
$config = Config::get('session');
|
||||
|
||||
Cookie::forget(Auth::remember_key);
|
||||
extract($config, EXTR_SKIP);
|
||||
|
||||
// When forgetting the cookie, we need to also pass in the path and
|
||||
// domain that would have been used when the cookie was originally
|
||||
// set by the framework, otherwise it will not be deleted.
|
||||
Cookie::forget(Auth::user_key, $path, $domain, $secure);
|
||||
|
||||
Cookie::forget(Auth::remember_key, $path, $domain, $secure);
|
||||
|
||||
IoC::core('session')->forget(Auth::user_key);
|
||||
}
|
||||
|
||||
@@ -128,11 +128,15 @@ class Cookie {
|
||||
* Delete a cookie.
|
||||
*
|
||||
* @param string $name
|
||||
* @param string $path
|
||||
* @param string $domain
|
||||
* @param bool $secure
|
||||
* @param bool $http_only
|
||||
* @return bool
|
||||
*/
|
||||
public static function forget($name)
|
||||
public static function forget($name, $path = '/', $domain = null, $secure = false, $http_only = false)
|
||||
{
|
||||
return static::put($name, null, -2000);
|
||||
return static::put($name, null, -2000, $path, $domain, $secure, $http_only);
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user