Skip to content

Commit 00f6497

Browse files
linawolfminapok
authored andcommitted
[BUGFIX] Remove accidentally added enable field descriptions
In issue #107947, field descriptions were accidentally added to the fe_users table even though these fields are not defined. In that change, we also decided not to introduce such descriptions, but the entries in this table were mistakenly left in place. This patch removes them. Resolves: #108255 Related: #107947 Releases: main Change-Id: Icb68feb267702a115d0952b7f0d0d60b3f39cf38 Reviewed-on: https://review.typo3.org/c/Packages/TYPO3.CMS/+/91814 Reviewed-by: Josef Glatz <typo3@josefglatz.at> Reviewed-by: Jasmina Ließmann <typo3@minapok.eu> Tested-by: core-ci <typo3@b13.com> Reviewed-by: Christian Kuhn <lolli@schwarzbu.ch> Tested-by: Christian Kuhn <lolli@schwarzbu.ch> Tested-by: Jasmina Ließmann <typo3@minapok.eu>
1 parent b26ddf1 commit 00f6497

File tree

2 files changed

+0
-4
lines changed

2 files changed

+0
-4
lines changed

typo3/sysext/frontend/Configuration/TCA/Overrides/fe_groups.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,3 @@
33
defined('TYPO3') or die();
44

55
$GLOBALS['TCA']['fe_groups']['columns']['hidden']['label'] = 'core.db.accounts:group.enabled';
6-
$GLOBALS['TCA']['fe_groups']['columns']['hidden']['description'] = 'core.db.accounts:group.enabled.description';

typo3/sysext/frontend/Configuration/TCA/Overrides/fe_users.php

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,5 @@
33
defined('TYPO3') or die();
44

55
$GLOBALS['TCA']['fe_users']['columns']['disable']['label'] = 'core.db.accounts:enabled';
6-
$GLOBALS['TCA']['fe_users']['columns']['disable']['description'] = 'core.db.accounts:enabled.description';
76
$GLOBALS['TCA']['fe_users']['columns']['starttime']['label'] = 'core.db.accounts:starttime';
8-
$GLOBALS['TCA']['fe_users']['columns']['starttime']['description'] = 'core.db.accounts:starttime.description';
97
$GLOBALS['TCA']['fe_users']['columns']['endtime']['label'] = 'core.db.accounts:endtime';
10-
$GLOBALS['TCA']['fe_users']['columns']['endtime']['description'] = 'core.db.accounts:endtime.description';

0 commit comments

Comments
 (0)