mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-23 08:23:12 +01:00
fix for php5.3, which by default seems NOT include content of $_COOKIE in $_REQUEST (request_order php.ini variable)
This commit is contained in:
parent
66a22129e0
commit
313dc8244b
@ -736,6 +736,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