mirror of
https://github.com/EGroupware/egroupware.git
synced 2025-02-23 21:51:14 +01:00
small fix to get sitemgr working with php4 sessions
This commit is contained in:
parent
21ccc36222
commit
65034dab5a
@ -36,6 +36,10 @@
|
|||||||
|
|
||||||
function read_session()
|
function read_session()
|
||||||
{
|
{
|
||||||
|
if (!$this->sessionid)
|
||||||
|
{
|
||||||
|
return False;
|
||||||
|
}
|
||||||
session_id($this->sessionid);
|
session_id($this->sessionid);
|
||||||
session_start();
|
session_start();
|
||||||
return $GLOBALS['phpgw_session'] = $_SESSION['phpgw_session'];
|
return $GLOBALS['phpgw_session'] = $_SESSION['phpgw_session'];
|
||||||
|
Loading…
Reference in New Issue
Block a user