mirror of
https://github.com/Mibew/mibew.git
synced 2025-04-28 17:16:41 +03:00
Fix default value for samesite cookies property
This commit is contained in:
parent
756014d568
commit
3b3abe615d
@ -101,7 +101,7 @@ class CookieFactory
|
|||||||
$this->isSecure(),
|
$this->isSecure(),
|
||||||
$http_only,
|
$http_only,
|
||||||
true,
|
true,
|
||||||
!$same_site && $this->isSecure() ? 'None' : false
|
!$same_site && $this->isSecure() ? 'None' : 'Lax'
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user