Skip to content

Instantly share code, notes, and snippets.

@smichaelsen
Created December 9, 2020 14:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save smichaelsen/bde0aab6590e0a3fdf0bef153c39a557 to your computer and use it in GitHub Desktop.
Save smichaelsen/bde0aab6590e0a3fdf0bef153c39a557 to your computer and use it in GitHub Desktop.
Put this in your sitepackage Configuration/TCA/Overrides/
<?php
// this mitigates the core bug #92863 and is taken from https://github.com/TYPO3/TYPO3.CMS/commit/db0d7549647ed5326f4affc84b907dd0e397c844
// this file can be removed entirely after updating to TYPO3 10.4.11
$GLOBALS['TCA']['sys_file_metadata']['columns']['l10n_parent']['config'] = [
'type' => 'group',
'internal_type' => 'db',
'allowed' => 'sys_file_metadata',
'size' => 1,
'maxitems' => 1,
'minitems' => 0,
];
$GLOBALS['TCA']['sys_file_reference']['columns']['l10n_parent']['config'] = [
'type' => 'group',
'internal_type' => 'db',
'allowed' => 'sys_file_reference',
'size' => 1,
'maxitems' => 1,
'minitems' => 0,
];
@einpraegsam
Copy link

Works like a charme

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment