Skip to content
Snippets Groups Projects
Commit e2e392a7 authored by Thijs Kinkhorst's avatar Thijs Kinkhorst
Browse files

session.cookie.domain is allowed to be null (see config-templates/)

parent 1f57570d
No related branches found
No related tags found
No related merge requests found
......@@ -155,7 +155,7 @@ abstract class SessionHandler
return [
'lifetime' => $config->getInteger('session.cookie.lifetime', 0),
'path' => $config->getString('session.cookie.path', '/'),
'domain' => $config->getString('session.cookie.domain', ''),
'domain' => $config->getString('session.cookie.domain', null),
'secure' => $config->getBoolean('session.cookie.secure', false),
'samesite' => $config->getString('session.cookie.samesite', null),
'httponly' => true,
......
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