Skip to content

Commit cfd8922

Browse files
authored
[BUGFIX] 13.4: addPiFlexFormValue needs '*' to match all content elements otherwise nothing will be displayed (#6421)
1 parent 260a062 commit cfd8922

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Documentation/ApiOverview/FlexForms/_codesnippets/_extbase_plugin.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
);
2121

2222
ExtensionManagementUtility::addPiFlexFormValue(
23-
'',
23+
'*',
2424
'FILE:EXT:myext/Configuration/FlexForms/MyFlexform.xml',
2525
$ctypeKey,
2626
);

Documentation/ApiOverview/FlexForms/_codesnippets/_plain_plugin.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
);
2222

2323
ExtensionManagementUtility::addPiFlexFormValue(
24-
'',
24+
'*',
2525
'FILE:EXT:myext/Configuration/FlexForms/MyFlexform.xml',
2626
$ctypeKey,
2727
);

0 commit comments

Comments
 (0)