File tree Expand file tree Collapse file tree 2 files changed +5
-2
lines changed
Expand file tree Collapse file tree 2 files changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -10,7 +10,8 @@ class EmailTemplateFinisher extends EmailFinisher
1010{
1111 protected function executeInternal (): void
1212 {
13- if (!empty ($ this ->options ['emailTemplate ' ])) {
13+ // For v10 compatibility reasons we check for [Empty] value
14+ if (!empty ($ this ->options ['emailTemplate ' ]) && $ this ->options ['emailTemplate ' ] !== '[Empty] ' ) {
1415 $ this ->setOption ('templateName ' , $ this ->options ['emailTemplate ' ]);
1516 }
1617 parent ::executeInternal ();
Original file line number Diff line number Diff line change 3636 items :
3737 0 :
3838 - " Default"
39- - " "
39+ # The default value is required for v10, otherwise this will show up as "INVALID VALUE"
40+ # can be set to "" (empty string) once we support v11 and up only.
41+ - " [Empty]"
4042TYPO3 :
4143 CMS :
4244 Form :
You can’t perform that action at this time.
0 commit comments