From 614aef21a4b7d21814b94f50ea3d8e680f340b4d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B6rn=20Fromme?= Date: Wed, 30 Mar 2022 16:36:57 +0200 Subject: [PATCH] Fix colliding email template/layout paths --- .../ep_events/Resources/Private/Templates/Email/Autoreply.html | 2 +- .../Resources/Private/Templates/Email/Configurator.html | 2 +- .../ep_events/Resources/Private/Templates/Email/Inquiry.html | 2 +- public/typo3conf/ext/ep_events/ext_localconf.php | 2 ++ 4 files changed, 5 insertions(+), 3 deletions(-) diff --git a/public/typo3conf/ext/ep_events/Resources/Private/Templates/Email/Autoreply.html b/public/typo3conf/ext/ep_events/Resources/Private/Templates/Email/Autoreply.html index 546ab819..aaa00616 100644 --- a/public/typo3conf/ext/ep_events/Resources/Private/Templates/Email/Autoreply.html +++ b/public/typo3conf/ext/ep_events/Resources/Private/Templates/Email/Autoreply.html @@ -2,7 +2,7 @@ xmlns:v="http://typo3.org/ns/FluidTYPO3/Vhs/ViewHelpers" xmlns:f="http://typo3.org/ns/fluid/ViewHelpers"> - +

Sehr geehrte Damen und Herren,

diff --git a/public/typo3conf/ext/ep_events/Resources/Private/Templates/Email/Configurator.html b/public/typo3conf/ext/ep_events/Resources/Private/Templates/Email/Configurator.html index 3ab883c2..f6970954 100644 --- a/public/typo3conf/ext/ep_events/Resources/Private/Templates/Email/Configurator.html +++ b/public/typo3conf/ext/ep_events/Resources/Private/Templates/Email/Configurator.html @@ -3,7 +3,7 @@ xmlns:ep="http://typo3.org/ns/EP/EpEvents/ViewHelpers" xmlns:f="http://typo3.org/ns/fluid/ViewHelpers"> - +

Anfrage E&P Events vom

diff --git a/public/typo3conf/ext/ep_events/Resources/Private/Templates/Email/Inquiry.html b/public/typo3conf/ext/ep_events/Resources/Private/Templates/Email/Inquiry.html index f116e5e1..f1e32524 100644 --- a/public/typo3conf/ext/ep_events/Resources/Private/Templates/Email/Inquiry.html +++ b/public/typo3conf/ext/ep_events/Resources/Private/Templates/Email/Inquiry.html @@ -2,7 +2,7 @@ xmlns:v="http://typo3.org/ns/FluidTYPO3/Vhs/ViewHelpers" xmlns:f="http://typo3.org/ns/fluid/ViewHelpers"> - +

Anfrage E&P Events vom

diff --git a/public/typo3conf/ext/ep_events/ext_localconf.php b/public/typo3conf/ext/ep_events/ext_localconf.php index c4cbcb50..58b2ae53 100644 --- a/public/typo3conf/ext/ep_events/ext_localconf.php +++ b/public/typo3conf/ext/ep_events/ext_localconf.php @@ -189,4 +189,6 @@ call_user_func(function() { $GLOBALS['TYPO3_CONF_VARS']['FE']['cacheHash']['excludedParameters'][] = 'ref'; $GLOBALS['TYPO3_CONF_VARS']['FE']['cacheHash']['excludedParameters'][] = 'tx_epevents_configurator[travelType]'; $GLOBALS['TYPO3_CONF_VARS']['FE']['cacheHash']['excludedParameters'][] = 'tx_epevents_configurator[locationType]'; + + $GLOBALS['TYPO3_CONF_VARS']['MAIL']['templateRootPaths'][800] = 'EXT:ep_events/Resources/Private/Templates/Email/'; });