Skip to content

Commit

Permalink
[BUGFIX] Replace ->setArguments() with ->withArguments() in extbase c…
Browse files Browse the repository at this point in the history
…ontext for TYPO3 12

Fixes: #208
  • Loading branch information
einpraegsam committed Feb 2, 2024
1 parent eda7e11 commit fa66ff9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Classes/Controller/FrontendController.php
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ public function initializeUnsubscribe2Action(): void
{
$arguments = GeneralUtility::_GP('tx_luxletter_fe');
if (is_array($arguments)) {
$this->request->setArguments($arguments);
$this->request = $this->request->withArguments($arguments);
}
}

Expand Down

0 comments on commit fa66ff9

Please sign in to comment.