Actions
Bug #91580
openRecords with sys_category_record_mm not exported in t3d
Status:
New
Priority:
Should have
Assignee:
-
Category:
Import/Export (T3D)
Target version:
-
Start date:
2020-06-04
Due date:
% Done:
0%
Estimated time:
TYPO3 Version:
11
PHP Version:
7.2
Tags:
Complexity:
Is Regression:
Sprint Focus:
Description
Problem
An export of records with relations to sys_category entries via sys_category_record_mm does not include them in the export.
The reason for this is to be found in \TYPO3\CMS\Core\Database\ReferenceIndex::getRelations_procDB
the If statement should be changed from
if ($conf['MM_opposite_field']) {
to
if (is_array($conf['MM_oppositeUsage'])) {
It was now possible to export the sys_category records e.g. for the news extension.
The use of the tables configured in MM_oppositeUsage must be prevented, otherwise a memory overflow is generated.
Updated by Rémy DANIEL about 2 years ago
- Category changed from Miscellaneous to Import/Export (T3D)
- TYPO3 Version changed from 9 to 11
Still an issue in 11.5
Updated by Oliver Hader about 2 years ago
- Related to Task #56061: Introduce MM_oppositeUsage property added
Updated by Riccardo De Contardi 4 months ago
- Related to Bug #82301: Relationship between tt_address and sys_category records broken on import added
Updated by Riccardo De Contardi 4 months ago
- Related to Bug #103519: Category relation missing in XML-export added
Actions