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'];
Updated by Gerrit Code Review about 6 years ago
- Status changed from New to Under Review
Patch set 1 for branch master of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/58395
Updated by Anonymous about 6 years ago
- Status changed from Under Review to Resolved
- % Done changed from 0 to 100
Applied in changeset 8c1b7c4703bea4765624320157cf97925d4a2dd5.
Actions