From abab3f2f760bf7b149cb4c7b28de57a8208d191e Mon Sep 17 00:00:00 2001 From: Alexander Opitz Date: Fri, 21 Feb 2020 12:50:19 +0100 Subject: [PATCH] [BUGFIX] v9: Add l10n exclude to own page fields Till yet page overlaying was done in an extra table but pages_language_overlay got removed with TYPO3 v9 LTS so we need to prevent overlaying this fields. For tt_content it is managed in an other way, so there is no change needed. Releases: 8.0.0, 7.3.3 Resolves: #266 #246 --- Configuration/TCA/Overrides/pages.php | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Configuration/TCA/Overrides/pages.php b/Configuration/TCA/Overrides/pages.php index dee0ece63..01cd3282b 100644 --- a/Configuration/TCA/Overrides/pages.php +++ b/Configuration/TCA/Overrides/pages.php @@ -5,6 +5,7 @@ 'tx_templavoilaplus_ds' => array( 'exclude' => 1, 'label' => 'LLL:EXT:templavoilaplus/Resources/Private/Language/locallang_db.xlf:pages.tx_templavoilaplus_ds', + 'l10n_mode' => 'exclude', 'config' => array( 'type' => 'select', 'renderType' => 'selectSingle', @@ -24,6 +25,7 @@ 'exclude' => 1, 'label' => 'LLL:EXT:templavoilaplus/Resources/Private/Language/locallang_db.xlf:pages.tx_templavoilaplus_to', 'displayCond' => 'FIELD:tx_templavoilaplus_ds:REQ:true', + 'l10n_mode' => 'exclude', 'config' => array( 'type' => 'select', 'renderType' => 'selectSingle', @@ -41,6 +43,7 @@ 'tx_templavoilaplus_next_ds' => array( 'exclude' => 1, 'label' => 'LLL:EXT:templavoilaplus/Resources/Private/Language/locallang_db.xlf:pages.tx_templavoilaplus_next_ds', + 'l10n_mode' => 'exclude', 'config' => array( 'type' => 'select', 'renderType' => 'selectSingle', @@ -59,6 +62,7 @@ 'tx_templavoilaplus_next_to' => array( 'exclude' => 1, 'label' => 'LLL:EXT:templavoilaplus/Resources/Private/Language/locallang_db.xlf:pages.tx_templavoilaplus_next_to', + 'l10n_mode' => 'exclude', 'displayCond' => 'FIELD:tx_templavoilaplus_next_ds:REQ:true', 'config' => array( 'type' => 'select', @@ -77,6 +81,7 @@ 'tx_templavoilaplus_flex' => array( 'exclude' => 1, 'label' => 'LLL:EXT:templavoilaplus/Resources/Private/Language/locallang_db.xlf:pages.tx_templavoilaplus_flex', + 'l10n_mode' => 'exclude', 'config' => array( 'type' => 'flex', 'ds_pointerField' => 'tx_templavoilaplus_ds',