Bug #33846
closedIRRE titles are not clickable
0%
Description
Since TYPO3 4.6 the formerly saved IRRE records show the titles, but a click on the title has no effect. It should have listed the full IRRE record of the foreign table to make it possible to edit it.
This has worked fine until TYPO3 4.5.
This error happens with this IRRE $TCA:
'graduated_price_uid' => array (
'exclude' => 1,
'label' => 'LLL:EXT:' . TT_PRODUCTS_EXT . '/locallang_db.xml:tt_products.graduated_price_uid',
'config' => array (
'type' => 'inline',
'appearance' => array ('collapseAll' => TRUE, 'newRecordLinkAddTitle' => TRUE, 'useCombination' => TRUE),
'foreign_table' => 'tt_products_mm_graduated_price',
'foreign_field' => 'product_uid',
'foreign_sortby' => 'productsort',
'foreign_label' => 'graduated_price_uid',
'foreign_selector' => 'graduated_price_uid',
'foreign_unique' => 'graduated_price_uid',
'maxitems' => 10
),
),