mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-07 08:34:42 +01:00
backport of r47147 from 1.8, thought 11.1 or trunk seems not to initialise session
This commit is contained in:
parent
7a5b2a59b1
commit
289de71581
@ -246,7 +246,11 @@ class setup
|
||||
|
||||
if (isset($_COOKIE[self::SESSIONID])) session_id($_COOKIE[self::SESSIONID]);
|
||||
|
||||
return @session_start(); // suppress notice if session already started or warning in CLI
|
||||
$ok = @session_start(); // suppress notice if session already started or warning in CLI
|
||||
// need to decrypt session, in case session encryption is switched on in header.inc.php
|
||||
egw_session::decrypt();
|
||||
//error_log(__METHOD__."() returning ".array2string($ok).' _SESSION='.array2string($_SESSION));
|
||||
return $ok;
|
||||
}
|
||||
|
||||
/**
|
||||
|
Loading…
Reference in New Issue
Block a user