Skip to content
Permalink

Comparing changes

This is a direct comparison between two commits made in this repository or its related repositories. View the default comparison for this range or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: neos/flow-development-collection
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 29694c2e21854781aee35b3d4ce9406efe4408b4
Choose a base ref
..
head repository: neos/flow-development-collection
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: f4c5479aa4e7d35b698d9905c35bdc492eece1cd
Choose a head ref
Showing with 3 additions and 3 deletions.
  1. +3 −3 Neos.Flow/Classes/Mvc/Controller/ActionController.php
6 changes: 3 additions & 3 deletions Neos.Flow/Classes/Mvc/Controller/ActionController.php
Original file line number Diff line number Diff line change
@@ -835,10 +835,10 @@ protected function renderView(ResponseInterface $httpResponse): ResponseInterfac
{
$result = $this->view->render();

if ($result instanceof ResponseInterface) {
return $result;
if ($result instanceof StreamInterface) {
return $httpResponse->withBody($result);
}

return $httpResponse->withBody($result);
return $result;
}
}