From 16d197d64045d6412c7fbadc5b70d7088fbacddd Mon Sep 17 00:00:00 2001 From: Nikita Hovratov Date: Sun, 10 Dec 2023 01:07:37 +0100 Subject: [PATCH] Remove leftover select_key (#1052) select_key does not exist anymore in the Core and can be safely removed, --- Configuration/TCA/Overrides/tt_content.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Configuration/TCA/Overrides/tt_content.php b/Configuration/TCA/Overrides/tt_content.php index 638d902..7d35150 100644 --- a/Configuration/TCA/Overrides/tt_content.php +++ b/Configuration/TCA/Overrides/tt_content.php @@ -31,7 +31,7 @@ call_user_func( ); // This removes the default controls from the plugin. - $controlsToRemove = 'recursive,select_key,pages'; + $controlsToRemove = 'recursive,pages'; $GLOBALS['TCA']['tt_content']['types']['list']['subtypes_excludelist']['tea_teaindex'] = $controlsToRemove; $GLOBALS['TCA']['tt_content']['types']['list']['subtypes_excludelist']['tea_teashow'] = $controlsToRemove; $GLOBALS['TCA']['tt_content']['types']['list']['subtypes_excludelist']['tea_teafrontendeditor'] = $controlsToRemove;