backport of r47147 from 1.8, thought 11.1 or trunk seems not to initialise session

This commit is contained in:
Ralf Becker 2014-06-03 12:10:20 +00:00
parent 7a5b2a59b1
commit 289de71581

View File

@ -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;
}
/**