Skip to content

Commit

Permalink
[TASK] Avoid second argument to flexArray2Xml()
Browse files Browse the repository at this point in the history
  • Loading branch information
lolli42 committed Oct 12, 2023
1 parent ae24998 commit 9faefd3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Classes/TcaDataGenerator/FieldGenerator/TypeFlex.php
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ public function generate(array $data): string
// Get string representation of result via FlexFormTools
$resultString = '';
if (!empty($resultArray)) {
$resultString = $flexFormTools->flexArray2Xml($resultArray, true);
$resultString = $flexFormTools->flexArray2Xml($resultArray);
}

return $resultString;
Expand Down

0 comments on commit 9faefd3

Please sign in to comment.