Bug #85109
closedNew record version will call exception when you work in workspace.
100%
Description
How it can be reproduced:¶
- Configure field in a TCA like
'type' => 'select',
'renderType' => 'selectCheckBox',
- Switch to workspace and edit a live version (2018-05-29-source_record.png)
- Save it -> exception (2018-05-29-exception.png)
How it can be fixed:¶
File: /typo3/sysext/core/Classes/DataHandling/DataHandler.php
Line: 6465
Current: $origValueArray = explode(',', $value);
Should be: $origValueArray = is_array($value) ? $value : explode(',', $value);
Files
Updated by Benni Mack over 6 years ago
- Target version changed from 8.7.15 to 8.7.19
Updated by Gerrit Code Review over 6 years ago
- Status changed from New to Under Review
Patch set 1 for branch master of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/57484
Updated by Gerrit Code Review over 6 years ago
Patch set 2 for branch master of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/57484
Updated by Susanne Moog about 6 years ago
- Target version changed from 8.7.19 to Candidate for patchlevel
Updated by Gerrit Code Review about 6 years ago
Patch set 3 for branch master of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/57484
Updated by Gerrit Code Review about 6 years ago
Patch set 1 for branch TYPO3_8-7 of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/58714
Updated by Alexey Atsyn about 6 years ago
- Status changed from Under Review to Resolved
- % Done changed from 0 to 100
Applied in changeset 9316bfb3cd09c4a1b922c41fe1aed2c2a54a021d.