Actions
Bug #102180
closedtt_address Email Field in Reactions not available
Status:
Closed
Priority:
Should have
Assignee:
Category:
WebHooks - Incoming = Reactions + Outgoing
Target version:
Start date:
2023-10-16
Due date:
% Done:
100%
Estimated time:
TYPO3 Version:
12
PHP Version:
8.1
Tags:
Complexity:
Is Regression:
Sprint Focus:
Description
When creating a Reaction with tt_address as selected table, the field "email" is not available in the fields-form at the bottom of the reactions form
I solved it by
commenting out some rows:
"TCA/Configuration/TCA/Overrides/tt_address.php" ->
rm row 26-28
$GLOBALS['TCA']['tt_address']['columns']['email']['config'] = [
'type' => 'email',
];
"TCA/tt_address.php"
rm "email" from row 444 in the eval values
'email' => [
'label' => 'LLL:EXT:core/Resources/Private/Language/locallang_general.xlf:LGL.email',
'config' => [
'type' => 'input',
'size' => 20,
'eval' => 'trim',
'max' => 255,
'softref' => 'email',
'behaviour' => [
'allowLanguageSynchronization' => true,
],
]
],
Actions