summaryrefslogtreecommitdiff
path: root/vendor/symfony/http-foundation/Session
diff options
context:
space:
mode:
authorGreg Roach <fisharebest@webtrees.net>2019-01-07 16:45:05 +0000
committerGreg Roach <fisharebest@webtrees.net>2019-01-07 16:45:05 +0000
commit5bcdfc98762e27505526568ee9ad3b742a00e726 (patch)
treecfd1cd634dec05f13acfc37df52cd735967c5f6d /vendor/symfony/http-foundation/Session
parent25366223eb30b309b137279bf74b779083e0a64e (diff)
downloadwebtrees-5bcdfc98762e27505526568ee9ad3b742a00e726.tar.gz
webtrees-5bcdfc98762e27505526568ee9ad3b742a00e726.tar.bz2
webtrees-5bcdfc98762e27505526568ee9ad3b742a00e726.zip
Update vendor dependencies
Diffstat (limited to 'vendor/symfony/http-foundation/Session')
-rw-r--r--vendor/symfony/http-foundation/Session/Storage/NativeSessionStorage.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/vendor/symfony/http-foundation/Session/Storage/NativeSessionStorage.php b/vendor/symfony/http-foundation/Session/Storage/NativeSessionStorage.php
index 156a0d4555..232eb64cfd 100644
--- a/vendor/symfony/http-foundation/Session/Storage/NativeSessionStorage.php
+++ b/vendor/symfony/http-foundation/Session/Storage/NativeSessionStorage.php
@@ -153,7 +153,7 @@ class NativeSessionStorage implements SessionStorageInterface
if (null !== $this->emulateSameSite) {
$originalCookie = SessionUtils::popSessionCookie(session_name(), session_id());
if (null !== $originalCookie) {
- header(sprintf('%s; SameSite=%s', $originalCookie, $this->emulateSameSite));
+ header(sprintf('%s; SameSite=%s', $originalCookie, $this->emulateSameSite), false);
}
}
@@ -225,7 +225,7 @@ class NativeSessionStorage implements SessionStorageInterface
if (null !== $this->emulateSameSite) {
$originalCookie = SessionUtils::popSessionCookie(session_name(), session_id());
if (null !== $originalCookie) {
- header(sprintf('%s; SameSite=%s', $originalCookie, $this->emulateSameSite));
+ header(sprintf('%s; SameSite=%s', $originalCookie, $this->emulateSameSite), false);
}
}