Actions
Bug #85109
closedNew record version will call exception when you work in workspace.
Status:
Closed
Priority:
Should have
Assignee:
Category:
Workspaces
Target version:
Start date:
2018-05-29
Due date:
% Done:
100%
Estimated time:
TYPO3 Version:
8
PHP Version:
7.2
Tags:
Complexity:
Is Regression:
Sprint Focus:
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
Actions