Skip to content

Commit

Permalink
[BUGFIX] Default form.field "exclude" attribute to "false"
Browse files Browse the repository at this point in the history
Resolves: FluidTYPO3#1874
  • Loading branch information
cweiske authored and NamelessCoder committed Apr 5, 2021
1 parent 64fc2da commit b6d951e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Classes/ViewHelpers/FieldViewHelper.php
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ public function initializeArguments()
$this->registerArgument('type', 'string', 'TCA field type', true);
$this->registerArgument('name', 'string', 'Name of the attribute, FlexForm XML-valid tag name string', true);
$this->registerArgument('label', 'string', 'Label for field', true);
$this->registerArgument('exclude', 'bool', 'Set to FALSE if field is not an "exclude" field', false, true);
$this->registerArgument('exclude', 'bool', 'Set to FALSE if field is not an "exclude" field', false, false);
$this->registerArgument('config', 'array', 'TCA "config" array', false, []);
$this->registerArgument(
'transform',
Expand Down

0 comments on commit b6d951e

Please sign in to comment.