Feature #17473
closedTCA fe_group/permission select order by title (for tt_content or pages)
0%
Description
Order the fe_group select by title or tt_content, pages and all default TYPO3 tables.
For everyone who doesn't want to wait: (put this in your extTables.php)
$TCA['tt_content']['columns']['fe_group']['config']['foreign_table_where'] = 'ORDER BY fe_groups.title';
$TCA['pages']['columns']['fe_group']['config']['foreign_table_where'] = 'ORDER BY fe_groups.title';
$TCA['fe_users']['columns']['usergroup']['config']['foreign_table_where'] = 'ORDER BY fe_groups.title';
$TCA['tt_news']['columns']['fe_group']['config']['foreign_table_where'] = 'ORDER BY fe_groups.title';
$TCA['tt_news_cat']['columns']['fe_group']['config']['foreign_table_where'] = 'ORDER BY fe_groups.title';
(issue imported from #M5973)
Files
Updated by Oliver Hader over 17 years ago
Good idea to change this. I've added a patch for the tables tt_content, pages and fe_users. Please add a new bug issue for the tt_news related tables since the extension tt_news isn't part of the TYPO3 Core. Thanks in advance!
Updated by Chris topher over 14 years ago
Resolved as duplicate of #20734; the work was done twice.