mirror of
https://github.com/Mibew/mibew.git
synced 2024-11-15 00:24:12 +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(),
|
||||
$http_only,
|
||||
true,
|
||||
!$same_site && $this->isSecure() ? 'None' : false
|
||||
!$same_site && $this->isSecure() ? 'None' : 'Lax'
|
||||
);
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user