TYPO3 Exception 1641989097

TYPO3 12.4.14 - 25.04.2024

Installation Overview

Installation with custom Email templates for form, Updated from TYPO3 v10.4

The Issue

Warning message
(1/1) #1641989097 LogicException
Invoked ContentObjectRenderer::parseFunc without any configuration
Copied!

Solution

The template contained the following:

Template.html before
<f:format.html parseFuncTSPath="">
    <f:translate extensionName="..." key="emailToSender.thankYou" arguments="{0: type}"/>
</f:format.html>
Copied!

Replace with

Template.html before
<f:format.html>
    <f:translate extensionName="..." key="emailToSender.thankYou" arguments="{0: type}"/>
</f:format.html>
Copied!

This way null is used instead of an empty string and the default can be applied.