You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
while migration from Typo3 7.6 to 8.7 I found a "Bug" in the MailPostProcessor.php
on line 488:
$typoScript = $configurationManager->getConfiguration(\TYPO3\CMS\Extbase\Configuration\ConfigurationManagerInterface::CONFIGURATION_TYPE_FRAMEWORK);
this line does no return the needed array for the next foreach loops.
So I had to chance the mentioned line to
$typoScript = $configurationManager->getConfiguration(\TYPO3\CMS\Extbase\Configuration\ConfigurationManagerInterface::CONFIGURATION_TYPE_FULL_TYPOSCRIPT);
and adjust the paths in the method.
The text was updated successfully, but these errors were encountered:
Hello there,
while migration from Typo3 7.6 to 8.7 I found a "Bug" in the MailPostProcessor.php
on line 488:
$typoScript = $configurationManager->getConfiguration(\TYPO3\CMS\Extbase\Configuration\ConfigurationManagerInterface::CONFIGURATION_TYPE_FRAMEWORK);
this line does no return the needed array for the next foreach loops.
So I had to chance the mentioned line to
$typoScript = $configurationManager->getConfiguration(\TYPO3\CMS\Extbase\Configuration\ConfigurationManagerInterface::CONFIGURATION_TYPE_FULL_TYPOSCRIPT);
and adjust the paths in the method.
The text was updated successfully, but these errors were encountered: