Actions
Bug #86743
closedInline "then"/"else" not working for IfHasRoleViewHelper
Start date:
2018-10-25
Due date:
% Done:
100%
Estimated time:
TYPO3 Version:
8
PHP Version:
Tags:
Complexity:
Is Regression:
Yes
Sprint Focus:
Description
Since TYPO3v8 using the inline then
and else
arguments on the IfHasRoleViewHelper
does not work anymore.
Thus {f:security.ifHasRole(role: 10, then: 'YES', else: 'NO')}
leads to an error:
Undeclared arguments passed to ViewHelper TYPO3\CMS\Fluid\ViewHelpers\Security\IfHasRoleViewHelper: then, else. Valid arguments are: role
This happens because IfHasRoleViewHelper::initializeArguments()
does not call the same method of TYPO3Fluid\Fluid\Core\ViewHelper\AbstractConditionViewHelper
.
In TYPO3v7 this was avoided because TYPO3\CMS\Fluid\Core\ViewHelper\AbstractConditionViewHelper
did register these arguments in its constructor. Thus this is a regression.
Actions