Actions
Bug #88017
closedstatic::class in <f:form.select>
Status:
Closed
Priority:
Should have
Assignee:
-
Category:
Fluid
Target version:
-
Start date:
2019-03-27
Due date:
% Done:
100%
Estimated time:
TYPO3 Version:
9
PHP Version:
Tags:
Complexity:
Is Regression:
Sprint Focus:
Description
When I use subclass of SelectViewHelper with <f:form.select.option>, the value will not be passed, because of the static::class
in SelectViewHelper
and SelectViewHelper::class
in OptionViewHelper
.
Something like
<foo:form.select name="select" value="2">
<f:form.select.option value="1">Option 1</f:form.select.option>
<f:form.select.option value="2">Option 2</f:form.select.option>
</foo:form.select>
So, I think it should be self::class
rather than static::class
.
Actions