Actions
Bug #86576
closedBe.LinkViewHelper can not be used without arguments
Start date:
2018-10-05
Due date:
% Done:
100%
Estimated time:
TYPO3 Version:
9
PHP Version:
7.2
Tags:
Complexity:
no-brainer
Is Regression:
Sprint Focus:
Description
The newly introduced \TYPO3\CMS\Fluid\ViewHelpers\Be\LinkViewHelper can not be used without specifying the parameters. The following code will lead to a fatal error:
<f:be.link route="site_redirects">To the redirects module</f:be.link>
This is because the parameter argument is initialized with null if not passed to the ViewHelper but later on it is used as an array.
Solution: initialize the optional argument with the correct type.
Actions