mirror of
https://github.com/EGroupware/egroupware.git
synced 2025-01-06 05:59:28 +01:00
fix for php5.3, which by default seems NOT include content of $_COOKIE in
This commit is contained in:
parent
77d2fa4b73
commit
9a027d3346
@ -746,6 +746,10 @@ class egw_session
|
||||
{
|
||||
$sessionid = $_REQUEST[self::EGW_SESSION_NAME];
|
||||
}
|
||||
elseif(!$only_basic_auth && isset($_COOKIE[self::EGW_SESSION_NAME]))
|
||||
{
|
||||
$sessionid = $_COOKIE[self::EGW_SESSION_NAME];
|
||||
}
|
||||
else
|
||||
{
|
||||
$sessionid = false;
|
||||
|
Loading…
Reference in New Issue
Block a user