Actions
Bug #90560
closedExtbase class mapping : recordType not taken into account anymore
Start date:
2020-02-27
Due date:
% Done:
100%
Estimated time:
TYPO3 Version:
10
PHP Version:
7.2
Tags:
Complexity:
no-brainer
Is Regression:
Yes
Sprint Focus:
Description
Since mapping is implemented in PHP file, recordType is not taken into account anymore.
The bug is located in \TYPO3\CMS\Extbase\Persistence\Generic\Mapper\DataMapFactory at line 141 :
$recordType = $classSettings['mapping']['recordType'];
should be :
$recordType = $classSettings['recordType'];
Actions