Important: #104693 - Setting allowLanguageSynchronization via columnsOverrides
See forge#104693
Description
Setting the TCA option
allow
for a specific
column in a record type via
columns
is currently not supported
by TYPO3 and therefore might lead to exceptions in the corresponding field wizard
(
Localization
). To mitigate this, the option is now
automatically removed from the TCA configuration via a TCA migration. A
corresponding deprecation log entry is added to inform integrators about
the necessary code adjustments.
Migration
Remove the
allow
option from
columns
for now.
// Before
'types' => [
'text' => [
'showitem' => 'header',
'columnsOverrides' => [
'header' => [
'config' => [
'behaviour' => [
'allowLanguageSynchronization' => true
],
],
],
],
],
],
// After
'types' => [
'text' => [
'showitem' => 'header',
],
],
Copied!