зеркало из https://github.com/mozilla/gecko-dev.git
fixed bug 332839
This commit is contained in:
Родитель
b532759c4f
Коммит
2f5e64eac3
|
@ -12,6 +12,8 @@ require_once 'includes.php';
|
|||
|
||||
session_start();
|
||||
|
||||
$_auth->removeUsernameCookie();
|
||||
|
||||
session_destroy();
|
||||
|
||||
// Assign template variables.
|
||||
|
|
|
@ -345,6 +345,15 @@ class AMO_Auth extends AMO_Object{
|
|||
|
||||
setcookie('amo_user', $_username, time() + $this->_expires, '/', false);
|
||||
|
||||
return true;
|
||||
}
|
||||
/**
|
||||
* This will remove the username cookie
|
||||
*/
|
||||
function removeUsernameCookie()
|
||||
{
|
||||
setcookie('amo_user', '', time() - 3600, '/', false);
|
||||
|
||||
return true;
|
||||
}
|
||||
}
|
||||
|
|
Загрузка…
Ссылка в новой задаче