Fix error log on PHP 7.2

Fixes following error in the logs: "ini_set(): A session is active. You cannot change the session module's ini settings at this time"

Signed-off-by: Morris Jobke <hey@morrisjobke.de>
This commit is contained in:
Morris Jobke 2017-12-12 14:33:30 +01:00
parent 14c83e415c
commit b19fae2629
No known key found for this signature in database
GPG Key ID: FE03C3A163FEDE68
1 changed files with 4 additions and 3 deletions

View File

@ -412,6 +412,10 @@ class OC {
}
public static function initSession() {
if(self::$server->getRequest()->getServerProtocol() === 'https') {
ini_set('session.cookie_secure', true);
}
// prevents javascript from accessing php session cookies
ini_set('session.cookie_httponly', true);
@ -663,9 +667,6 @@ class OC {
self::checkInstalled();
OC_Response::addSecurityHeaders();
if(self::$server->getRequest()->getServerProtocol() === 'https') {
ini_set('session.cookie_secure', true);
}
self::performSameSiteCookieProtection();