Actions
Bug #86379
closedLink Action Viewhelper ignores noCacheHash attribute
Status:
Closed
Priority:
Must have
Assignee:
-
Category:
Fluid
Target version:
-
Start date:
2018-09-25
Due date:
% Done:
100%
Estimated time:
TYPO3 Version:
9
PHP Version:
7.2
Tags:
Complexity:
Is Regression:
Sprint Focus:
Description
The problem is in line 81 of fluid/Classes/ViewHelpers/Link/ActionViewHelper.php:
$noCacheHash = (bool)$this->arguments['useCacheHash'];
should be:
$noCacheHash = (bool)$this->arguments['noCacheHash'];
Actions