Index: typo3/sysext/cms/ext_tables.php =================================================================== --- typo3/sysext/cms/ext_tables.php (revision 5697) +++ typo3/sysext/cms/ext_tables.php (working copy) @@ -173,6 +173,7 @@ ), 'exclusiveKeys' => '-1,-2', 'foreign_table' => 'fe_groups', + 'foreign_table_where' => 'ORDER BY fe_groups.title', ) ), 'extendToSubpages' => array ( Index: typo3/sysext/cms/tbl_tt_content.php =================================================================== --- typo3/sysext/cms/tbl_tt_content.php (revision 5697) +++ typo3/sysext/cms/tbl_tt_content.php (working copy) @@ -124,7 +124,8 @@ Array('LLL:EXT:lang/locallang_general.php:LGL.usergroups', '--div--') ), 'exclusiveKeys' => '-1,-2', - 'foreign_table' => 'fe_groups' + 'foreign_table' => 'fe_groups', + 'foreign_table_where' => 'ORDER BY fe_groups.title', ) ), 'sys_language_uid' => Array ( @@ -1117,4 +1118,4 @@ ); -?> \ No newline at end of file +?> Index: typo3/sysext/cms/tbl_cms.php =================================================================== --- typo3/sysext/cms/tbl_cms.php (revision 5697) +++ typo3/sysext/cms/tbl_cms.php (working copy) @@ -71,6 +71,7 @@ 'config' => array( 'type' => 'select', 'foreign_table' => 'fe_groups', + 'foreign_table_where' => 'ORDER BY fe_groups.title', 'size' => '6', 'minitems' => '1', 'maxitems' => '50' @@ -1032,4 +1033,4 @@ -?> \ No newline at end of file +?>