Skip to content
Snippets Groups Projects
Unverified Commit e646e8a4 authored by Tim van Dijen's avatar Tim van Dijen Committed by GitHub
Browse files

Pass correct parameter to session_set_cookie_params

Fixes #1270
parent d2970598
No related branches found
No related tags found
No related merge requests found
...@@ -97,7 +97,7 @@ class SessionHandlerPHP extends SessionHandler ...@@ -97,7 +97,7 @@ class SessionHandlerPHP extends SessionHandler
session_set_cookie_params( session_set_cookie_params(
$params['lifetime'], $params['lifetime'],
$params['path'], $params['path'],
$params['domain'], $params['domain'] ?? '',
$params['secure'], $params['secure'],
$params['httponly'] $params['httponly']
); );
......
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