Bug #102180
closedtt_address Email Field in Reactions not available
100%
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,
],
]
],
Updated by Georg Ringer about 1 year ago
- Category changed from FormEngine aka TCEforms to WebHooks - Incoming = Reactions + Outgoing
- Assignee set to Georg Ringer
- Target version set to Candidate for patchlevel
Updated by Gerrit Code Review about 1 year ago
- Status changed from New to Under Review
Patch set 1 for branch main of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/c/Packages/TYPO3.CMS/+/81438
Updated by Gerrit Code Review about 1 year ago
Patch set 2 for branch main of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/c/Packages/TYPO3.CMS/+/81438
Updated by Gerrit Code Review about 1 year ago
Patch set 1 for branch 12.4 of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/c/Packages/TYPO3.CMS/+/81454
Updated by Georg Ringer about 1 year ago
- Status changed from Under Review to Resolved
- % Done changed from 0 to 100
Applied in changeset fbb99b3f746c04435cac81396f56ce8068675edd.