From aba3d4528e243a1406a57358e8423168bb905d04 Mon Sep 17 00:00:00 2001 From: Oliver Bartsch <bo@cedev.de> Date: Wed, 17 Nov 2021 12:39:49 +0100 Subject: [PATCH] [BUGFIX] Add missing field enclosure to example The example for the CommaSeparatedValueProcessor was missing a value for the fieldEnclosure property. This might lead to the assumption that this property can be "unset", which is not the case as it always defaults to a quotation mark ("). This is now fixed by adding an example value. Resolves: #93190 Releases: master Change-Id: If4ee5f358f71d83d0117cf0e9c2e07c619966b9f Reviewed-on: https://review.typo3.org/c/Packages/TYPO3.CMS/+/72203 Tested-by: core-ci <typo3@b13.com> Tested-by: Benni Mack <benni@typo3.org> Reviewed-by: Benni Mack <benni@typo3.org> --- .../Classes/DataProcessing/CommaSeparatedValueProcessor.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/typo3/sysext/frontend/Classes/DataProcessing/CommaSeparatedValueProcessor.php b/typo3/sysext/frontend/Classes/DataProcessing/CommaSeparatedValueProcessor.php index db2bbf90a956..ed02433e4cab 100644 --- a/typo3/sysext/frontend/Classes/DataProcessing/CommaSeparatedValueProcessor.php +++ b/typo3/sysext/frontend/Classes/DataProcessing/CommaSeparatedValueProcessor.php @@ -42,7 +42,7 @@ use TYPO3\CMS\Frontend\ContentObject\DataProcessorInterface; * if.isTrue.field = bodytext * fieldName = bodytext * fieldDelimiter = | - * fieldEnclosure = + * fieldEnclosure = ' * maximumColumns = 2 * as = table * } -- GitLab