Actions
Bug #82564
closedError when adding inline record that has no endtime column configured
Status:
Rejected
Priority:
Should have
Assignee:
-
Category:
-
Target version:
-
Start date:
2017-09-26
Due date:
% Done:
0%
Estimated time:
TYPO3 Version:
7
PHP Version:
Tags:
Complexity:
Is Regression:
Sprint Focus:
Description
Hi,
After TYPO3 7.6.20 when I try to add a new inline record that has no 'endtime' column configured on TCA I get this error:
Core: Exception handler (WEB): Uncaught TYPO3 Exception: Unsupported operand types | Error thrown in file .../typo3_src/typo3/sysext/backend/Classes/Utility/BackendUtility.php in line 1555
To avoid the error I need to configure the enablecolumns like this:
'enablecolumns' => [
'disabled' => 'hidden',
'starttime' => 'starttime',
'endtime' => 'endtime'
],
Actions