Bug #88024
openallowLanguageSynchronization doesn't synchronise cropping from images
0%
Description
I have an image in a TCA and want to reuse this image (and the cropping) in localised records. I configured the field (relevant snippet):
'image' => [
'config' => \TYPO3\CMS\Core\Utility\ExtensionManagementUtility::getFileFieldTCAConfig(
'image',
[
...
'behaviour' => [
'allowLanguageSynchronization' => true,
],
]
),
]
In backend now I have the possibility to switch between "Custom value"/"Value of default language" in the image field. I created a new record, added an image, cropped it. Now I localised the record, the image with cropping is copied over from the default language.
When I change the cropping of the default language record, the new cropping is not used for the localised record ("Value of default language" is set) in backend preview and frontend output.
When I now change the image in the default language record and apply a cropping, both are set in the localised record.
I encountered the same problem with l10n_mode=exclude: If the cropping is changed later it is not reflected in the localised record.
TYPO3 version 9.5.5