Skip to content
Snippets Groups Projects
Commit 1683f107 authored by Markus Poerschke's avatar Markus Poerschke Committed by Andreas Fernandez
Browse files

[BUGFIX] Allow to send multiple HTTP headers with the same name

HTTP allows to send multiple headers with the same name.
Espacially this is needed for the "Set-Cookie" header to send more than
one cookie at the same response.

Resolves: #88420
Releases: master, 9.5
Change-Id: I4fd3573424e2ebf954cc5ebd043bd710226897fa
Reviewed-on: https://review.typo3.org/c/Packages/TYPO3.CMS/+/60800


Tested-by: default avatarTYPO3com <noreply@typo3.com>
Tested-by: default avatarSusanne Moog <look@susi.dev>
Tested-by: default avatarAndreas Fernandez <a.fernandez@scripting-base.de>
Tested-by: default avatarFrank Naegler <frank.naegler@typo3.org>
Reviewed-by: default avatarSusanne Moog <look@susi.dev>
Reviewed-by: default avatarAndreas Fernandez <a.fernandez@scripting-base.de>
Reviewed-by: default avatarFrank Naegler <frank.naegler@typo3.org>
parent ae298bfa
Branches
Tags
No related merge requests found
......@@ -74,7 +74,9 @@ abstract class AbstractApplication implements ApplicationInterface
}
foreach ($response->getHeaders() as $name => $values) {
header($name . ': ' . implode(', ', $values));
foreach ($values as $value) {
header($name . ': ' . $value, false);
}
}
}
$body = $response->getBody();
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment