Skip to content
Snippets Groups Projects
Commit ef16c8ab authored by Claus Due's avatar Claus Due Committed by Wouter Wolters
Browse files

[FOLLOWUP][BUGFIX] Convert ViewHelpers to static calling

Followup to prevent a variable reassignment which in
turn prevents overriding the controller, extension and
plugin name in f:uri.action.

Change-Id: I766e110555e03b36b93c777c63bbd629a42999fd
Resolves: #81143
Releases: master
Reviewed-on: https://review.typo3.org/52778


Reviewed-by: default avatarAndreas Fernandez <typo3@scripting-base.de>
Tested-by: default avatarAndreas Fernandez <typo3@scripting-base.de>
Reviewed-by: default avatarWouter Wolters <typo3@wouterwolters.nl>
Tested-by: default avatarWouter Wolters <typo3@wouterwolters.nl>
parent df6594df
No related merge requests found
......@@ -82,10 +82,10 @@ class ActionViewHelper extends \TYPO3\CMS\Fluid\Core\ViewHelper\AbstractViewHelp
$argumentsToBeExcludedFromQueryString = $arguments['argumentsToBeExcludedFromQueryString'];
$addQueryStringMethod = $arguments['addQueryStringMethod'];
$action = $arguments['action'];
$arguments = $arguments['arguments'];
$controller = $arguments['controller'];
$extensionName = $arguments['extensionName'];
$pluginName = $arguments['pluginName'];
$arguments = $arguments['arguments'];
$uri = $renderingContext->getControllerContext()->getUriBuilder()
->reset()
......
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