diff --git a/typo3/sysext/core/Classes/Core/Bootstrap.php b/typo3/sysext/core/Classes/Core/Bootstrap.php index 5228aacde6f3a5afd58828ab2281896e888c1814..c4a75de008c4b50d5491bd7860e95dacb20b105b 100644 --- a/typo3/sysext/core/Classes/Core/Bootstrap.php +++ b/typo3/sysext/core/Classes/Core/Bootstrap.php @@ -320,9 +320,6 @@ class Bootstrap { if ($this->response instanceof \Psr\Http\Message\ResponseInterface) { if (!headers_sent()) { - foreach ($this->response->getHeaders() as $name => $values) { - header($name . ': ' . implode(', ', $values)); - } // If the response code was not changed by legacy code (still is 200) // then allow the PSR-7 response object to explicitly set it. // Otherwise let legacy code take precedence. @@ -330,6 +327,10 @@ class Bootstrap if (http_response_code() === 200) { header('HTTP/' . $this->response->getProtocolVersion() . ' ' . $this->response->getStatusCode() . ' ' . $this->response->getReasonPhrase()); } + + foreach ($this->response->getHeaders() as $name => $values) { + header($name . ': ' . implode(', ', $values)); + } } echo $this->response->getBody()->__toString(); }