Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 4933e04

Browse filesBrowse files
bug symfony#86 Create cookies as raw in HttpFoundationFactory (nicolas-grekas)
This PR was merged into the 2.0-dev branch. Discussion ---------- Create cookies as raw in HttpFoundationFactory Fix symfony#83 Commits ------- 42cca49 Create cookies as raw in HttpFoundationFactory
2 parents cffb3a8 + 42cca49 commit 4933e04
Copy full SHA for 4933e04

File tree

Expand file treeCollapse file tree

1 file changed

+1
-1
lines changed
Filter options
Expand file treeCollapse file tree

1 file changed

+1
-1
lines changed

‎Factory/HttpFoundationFactory.php

Copy file name to clipboardExpand all lines: Factory/HttpFoundationFactory.php
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -218,7 +218,7 @@ private function createCookie(string $cookie): Cookie
218218
isset($cookieDomain) ? $cookieDomain : null,
219219
isset($cookieSecure),
220220
isset($cookieHttpOnly),
221-
false,
221+
true,
222222
isset($samesite) ? $samesite : null
223223
);
224224
}

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.