Bug #58951
show_item does not properly resolve MM group items
Status: | Closed | Start date: | 2014-05-20 | |
---|---|---|---|---|
Priority: | Should have | Due date: | ||
Assigned To: | Xavier Perseguers | % Done: | 0% |
|
Category: | - | Spent time: | - | |
Target version: | - | |||
TYPO3 Version: | 6.1 | Is Regression: | No | |
PHP Version: | 5.3 | Sprint Focus: | ||
Complexity: |
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.
Related issues
History
#1 Updated by Xavier Perseguers about 1 year 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.
#2 Updated by Gerrit Code Review about 1 year 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
#3 Updated by Tymoteusz Motylewski about 1 year ago
sounds like a similar problem to one I reported here http://forge.typo3.org/issues/56882
#4 Updated by Gerrit Code Review about 1 year 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
#5 Updated by Caspar Stuebs about 1 year ago
This Bug is related to #22970 reported since 4 Years and under review since 9 Month.
#6 Updated by Georg Ringer 8 months ago
- Status changed from Under Review to Closed
has been abandoned by the author because fixed
#7 Updated by Xavier Perseguers 8 months 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.
#8 Updated by Xavier Perseguers 8 months ago
- File 58951-TYPO3_61.diff
added
#9 Updated by Gerrit Code Review 8 months 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
#10 Updated by Xavier Perseguers 8 months ago
- File 58951-TYPO3_62.diff
added
#11 Updated by Xavier Perseguers 8 months ago
- Status changed from Under Review to Closed