Feature #17290
closedFrontend user groups not sorted in frontend admin panel (with solution)
100%
Description
The select box of 'simulate frontend user group' is not sorted, the groups are displaied in the order they where added (uid).
That makes it realy hard to select a group out of a big list of groups.
Solution:
Replace the current exec_SELECTquery( in the file t3lib/class.t3lib_tsfebeuserauth.php on line 295 with:
$res = $GLOBALS['TYPO3_DB']->exec_SELECTquery(
'fe_groups.uid, fe_groups.title',
'fe_groups,pages',
'pages.uid=fe_groups.pid AND pages.deleted=0 '.t3lib_BEfunc::deleteClause('fe_groups').' AND '.$this->getPagePermsClause(1),
'',
'fe_groups.title ASC'
);
(issue imported from #M5593)
Files
Updated by Chris topher over 14 years ago
This code was moved in rev. 4427, when feediting was made a sysext.
It now is located in typo3/sysext/fe_edit/view/class.tx_feedit_adminpanel.php.
Jonas, are you still interested in getting this fixed?
If so, please update your patch and post it to the Core List.
Updated by Alexander Opitz over 11 years ago
- Status changed from Accepted to Needs Feedback
- Target version deleted (
0)
The issue is very old, does this issue exists in newer versions of TYPO3 CMS (4.5 or 6.1)?
Updated by Jonas Felix over 11 years ago
Alexander Opitz wrote:
The issue is very old, does this issue exists in newer versions of TYPO3 CMS (4.5 or 6.1)?
Yes this is still a issue.
And it's anoying for the customer, if he uses a lot of frontend user groups.
Updated by Alexander Opitz over 11 years ago
- Status changed from Needs Feedback to New
Updated by Gerrit Code Review almost 10 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 http://review.typo3.org/35404
Updated by Gerrit Code Review almost 10 years ago
Patch set 2 for branch master of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at http://review.typo3.org/35404
Updated by Gerrit Code Review almost 10 years ago
Patch set 1 for branch TYPO3_6-2 of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at http://review.typo3.org/35441
Updated by Georg Ringer almost 10 years ago
- Status changed from Under Review to Resolved
- % Done changed from 0 to 100
Applied in changeset ee578932b0608ac6b7ebaacbeabc11e8a4ab7175.