Skip to content

Commit

Permalink
[BUGFIX] Show hidden subgroups of fe_group
Browse files Browse the repository at this point in the history
When editing a fe_group show its subgroups even if those are set to
hidden in order to avoid losing the subgroup relation on saving the
fe_group.

Resolves: #87649
Releases: master, 9.5
Change-Id: Ic39f32b47327202a848827bd9d6b4935c35edcdd
Reviewed-on: https://review.typo3.org/59640
Tested-by: TYPO3com <noreply@typo3.com>
Reviewed-by: Georg Ringer <georg.ringer@gmail.com>
Tested-by: Georg Ringer <georg.ringer@gmail.com>
Reviewed-by: Josef Glatz <josef.glatz@typo3.org>
Tested-by: Josef Glatz <josef.glatz@typo3.org>
Reviewed-by: Xavier Perseguers <xavier@typo3.org>
Tested-by: Xavier Perseguers <xavier@typo3.org>
Reviewed-by: Oliver Klee <typo3-coding@oliverklee.de>
Reviewed-by: Andreas Wolf <andreas.wolf@typo3.org>
Tested-by: Andreas Wolf <andreas.wolf@typo3.org>
  • Loading branch information
sgrossberndt authored and andreaswolf committed Feb 5, 2019
1 parent 2a4dcba commit ef29823
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion typo3/sysext/frontend/Configuration/TCA/fe_groups.php
Expand Up @@ -54,7 +54,7 @@
'type' => 'select',
'renderType' => 'selectMultipleSideBySide',
'foreign_table' => 'fe_groups',
'foreign_table_where' => 'AND NOT(fe_groups.uid = ###THIS_UID###) AND fe_groups.hidden=0 ORDER BY fe_groups.title',
'foreign_table_where' => 'AND NOT(fe_groups.uid = ###THIS_UID###) ORDER BY fe_groups.title',
'enableMultiSelectFilterTextfield' => true,
'size' => 6,
'autoSizeMax' => 10,
Expand Down

0 comments on commit ef29823

Please sign in to comment.