mirror of
https://github.com/EGroupware/egroupware.git
synced 2025-01-03 12:39:25 +01:00
"dont let php's session handle set the session-cookie"
This commit is contained in:
parent
93e98f3e1a
commit
ab01e4d818
@ -58,7 +58,9 @@ egw_session::init_handler();
|
|||||||
// check if we can restore the eGW enviroment from the php-session
|
// check if we can restore the eGW enviroment from the php-session
|
||||||
if ($_REQUEST[egw_session::EGW_SESSION_NAME])
|
if ($_REQUEST[egw_session::EGW_SESSION_NAME])
|
||||||
{
|
{
|
||||||
session_id($_REQUEST[egw_session::EGW_SESSION_NAME]);
|
ini_set('session.use_cookies',0);
|
||||||
|
session_name(egw_session::EGW_SESSION_NAME);
|
||||||
|
session_id($_REQUEST[egw_session::EGW_SESSION_NAME]);
|
||||||
session_start();
|
session_start();
|
||||||
|
|
||||||
if ($GLOBALS['egw_info']['flags']['currentapp'] != 'login' && $GLOBALS['egw_info']['flags']['currentapp'] != 'logout')
|
if ($GLOBALS['egw_info']['flags']['currentapp'] != 'login' && $GLOBALS['egw_info']['flags']['currentapp'] != 'logout')
|
||||||
|
Loading…
Reference in New Issue
Block a user