Bug #58951
closedshow_item does not properly resolve MM group items
0%
Description
When showing record information, fields which are inline records wrongly use the number of references as foreign uid to fetch related items and compute the label instead of resolving the relation.
In fact, the relations are properly resolved but never used as $this->row is not overridden by the result of the data-preprocessing.
Seems like it is bound to TYPO3 6.x because former versions did not resolve the relation and only showed the number of children.
Files
Updated by Xavier Perseguers over 10 years ago
The call to $treatData->renderRecord()
in \TYPO3\CMS\Backend\Controller\ContentElement\ElementInformationController
seems to be a bad idea since native date/time fields are then converted to timestamps. Using ->renderRecordRaw()
instead solves this and should not have side-effect since TSC is skipped but only used for RTE processing.
Updated by Gerrit Code Review over 10 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/30233
Updated by Tymoteusz Motylewski over 10 years ago
sounds like a similar problem to one I reported here http://forge.typo3.org/issues/56882
Updated by Gerrit Code Review over 10 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/30233
Updated by Caspar Stuebs about 10 years ago
This Bug is related to #22970 reported since 4 Years and under review since 9 Month.
Updated by Georg Ringer almost 10 years ago
- Status changed from Under Review to Closed
has been abandoned by the author because fixed
Updated by Xavier Perseguers over 9 years ago
- Subject changed from show_item does not properly resolve inline items to show_item does not properly resolve MM group items
- Status changed from Closed to New
- Target version deleted (
next-patchlevel) - TYPO3 Version changed from 6.2 to 6.1
My original bug report must not have been clear enough, I still have the problem, specifically with "group" records using 'MM' relation:
'config' => array( 'type' => 'group', 'internal_type' => 'db', 'allowed' => 'tx_myext_domain_model_member', 'foreign_table' => 'tx_myext_domain_model_member', // MANDATORY for Extbase 'MM' => 'tx_myext_member_memberparrain_mm', 'size' => 3, 'autoSizeMax' => 5, 'maxitems' => 5, 'multiple' => 0, ),
The problem occurs when using the "INFO" button on a record. Column containing such a definition will hold the number of selected records as "value", and this value will be used as a uid since 'MM' is not checked.
Updated by Xavier Perseguers over 9 years ago
- File 58951-TYPO3_61.diff 58951-TYPO3_61.diff added
Updated by Gerrit Code Review over 9 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 http://review.typo3.org/35482
Updated by Xavier Perseguers over 9 years ago
- File 58951-TYPO3_62.diff 58951-TYPO3_62.diff added
Updated by Xavier Perseguers over 9 years ago
- Status changed from Under Review to Closed