Skip to content
Snippets Groups Projects
Commit 2e22fcbe authored by Matthias Adrowski's avatar Matthias Adrowski
Browse files

[BUGFIX] Correct ForwardResponse implementation

parent a4a27c9e
No related branches found
No related tags found
1 merge request!38Feature upgrade to typo3 11
...@@ -119,9 +119,9 @@ class OverviewController extends AbstractController { ...@@ -119,9 +119,9 @@ class OverviewController extends AbstractController {
$this->forward('overviewWithoutCategories', NULL, NULL, $this->request->getArguments()); $this->forward('overviewWithoutCategories', NULL, NULL, $this->request->getArguments());
} }
else { else {
return (new \TYPO3\CMS\Extbase\Http\ForwardResponse('overviewWithoutCategories')->withControllerName('Record') return (new \TYPO3\CMS\Extbase\Http\ForwardResponse('overviewWithoutCategories'))->withControllerName('Record')
->withExtensionName('Extension') ->withExtensionName('Extension')
->withArguments( $this->request->getArguments()); ->withArguments($this->request->getArguments());
} }
break; break;
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment