Fix colliding email template/layout paths

This commit is contained in:
Björn Fromme
2022-03-30 16:36:57 +02:00
parent 8581fc435c
commit 614aef21a4
4 changed files with 5 additions and 3 deletions
@@ -2,7 +2,7 @@
xmlns:v="http://typo3.org/ns/FluidTYPO3/Vhs/ViewHelpers"
xmlns:f="http://typo3.org/ns/fluid/ViewHelpers">
<f:layout name="Email"/>
<f:layout name="SystemEmail"/>
<f:section name="Main">
<p>Sehr geehrte Damen und Herren,</p>
@@ -3,7 +3,7 @@
xmlns:ep="http://typo3.org/ns/EP/EpEvents/ViewHelpers"
xmlns:f="http://typo3.org/ns/fluid/ViewHelpers">
<f:layout name="Email"/>
<f:layout name="SystemEmail"/>
<f:section name="Main">
<h1>Anfrage E&amp;P Events vom <f:format.date date="now" format="d.m.y" /></h1>
@@ -2,7 +2,7 @@
xmlns:v="http://typo3.org/ns/FluidTYPO3/Vhs/ViewHelpers"
xmlns:f="http://typo3.org/ns/fluid/ViewHelpers">
<f:layout name="Email"/>
<f:layout name="SystemEmail"/>
<f:section name="Main">
<h1>Anfrage E&amp;P Events vom <f:format.date date="now" format="d.m.y" /></h1>
@@ -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/';
});