Bug #71138
closedRecords tstamp won't be updated on changing sorting in inline list (IRRE).
100%
Description
Example:
Table tx_xyz_content
has a sorting column defined in TCA. If you change the sorting of an record of type tx_xyz_content
with the arrows in Typo3s list module, the timestamp in stamp
is updated correct.
But if you define a second table tx_xyz_parent
in TCA with the following column config:
'content' => array( 'exclude' => 1, 'label' => 'Content', 'config' => array( 'type' => 'inline', 'foreign_table' => 'tx_xyz_content', 'foreign_field' => 'parent', 'foreign_sortby' => 'sorting', 'maxitems' => 9999, 'appearance' => array( 'collapseAll' => 0, 'levelLinksPosition' => 'top', 'showSynchronizationLink' => 1, 'showPossibleLocalizationRecords' => 1, 'useSortable' => 1, 'showAllLocalizationLink' => 1, ), ), ),
and open a record of type
tx_xyz_parent
in the list module, you get a list of tx_xyz_content
records that belongs to the opened tx_xyz_parent
record. This list items can be dragged to change its order and the values of the sorting column are updated accordingly. However this does not update the tstamp
field of the concerned tx_xyz_content
records.
Updated by Gerrit Code Review about 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 https://review.typo3.org/44617
Updated by Gerrit Code Review about 9 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/44617
Updated by Gerrit Code Review about 9 years ago
Patch set 3 for branch master of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/44617
Updated by Gerrit Code Review about 9 years ago
Patch set 4 for branch master of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/44617
Updated by Sebastian Mazza about 9 years ago
- Status changed from Under Review to Resolved
- % Done changed from 0 to 100
Applied in changeset 994baa0bb0b8f66752f1099a8eb22f7c943c388c.