"Fix for bug #1992 from Hans-Juergen Tappe:

The sitemgr login module does not cleanup session."
This commit is contained in:
Ralf Becker 2009-07-18 12:15:20 +00:00
parent e1a25587c8
commit 10006c16ec

View File

@ -34,6 +34,19 @@ else
exit;
}
/*
* Destroy any existing anonymous session.
* Copied from logout.php. Maybe make it a common function?
*/
if(isset($GLOBALS['sitemgr_info']) && $GLOBALS['egw_info']['user']['userid'] == $GLOBALS['sitemgr_info']['anonymous_user'])
{
if($GLOBALS['egw']->session->verify())
{
$GLOBALS['egw']->hooks->process('logout');
$GLOBALS['egw']->session->destroy($GLOBALS['sessionid'],$GLOBALS['kp3']);
}
}
// CAS :
if($GLOBALS['egw_info']['server']['auth_type'] == 'cas')
{