Skip to content
Snippets Groups Projects
Unverified Commit c44368b9 authored by Roeland Jago Douma's avatar Roeland Jago Douma Committed by GitHub
Browse files

Merge pull request #11096 from nextcloud/bugfix/11080/set-cookie-null-argument

replace setcookie value with '' instead of null.
parents a3e86be8 fe21b10d
No related branches found
No related tags found
No related merge requests found
...@@ -441,7 +441,7 @@ class OC { ...@@ -441,7 +441,7 @@ class OC {
// session timeout // session timeout
if ($session->exists('LAST_ACTIVITY') && (time() - $session->get('LAST_ACTIVITY') > $sessionLifeTime)) { if ($session->exists('LAST_ACTIVITY') && (time() - $session->get('LAST_ACTIVITY') > $sessionLifeTime)) {
if (isset($_COOKIE[session_name()])) { if (isset($_COOKIE[session_name()])) {
setcookie(session_name(), null, -1, self::$WEBROOT ? : '/'); setcookie(session_name(), '', -1, self::$WEBROOT ? : '/');
} }
\OC::$server->getUserSession()->logout(); \OC::$server->getUserSession()->logout();
} }
......
...@@ -54,7 +54,7 @@ class Internal extends Session { ...@@ -54,7 +54,7 @@ class Internal extends Session {
try { try {
$this->invoke('session_start'); $this->invoke('session_start');
} catch (\Exception $e) { } catch (\Exception $e) {
setcookie($this->invoke('session_name'), null, -1, \OC::$WEBROOT ?: '/'); setcookie($this->invoke('session_name'), '', -1, \OC::$WEBROOT ?: '/');
} }
restore_error_handler(); restore_error_handler();
if (!isset($_SESSION)) { if (!isset($_SESSION)) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment