Deprecation: #99031 - Deprecated f:format.html in Backend context
See forge#99031
Description
The <f:
ViewHelper \TYPO3\
should not be used in TYPO3 backend context anymore.
Using this ViewHelper in backend context triggers frontend parse
logic, which
should be avoided in the backend.
There are other ViewHelpers to output and parse HTML in backend context. See description of the f:sanitize.html ViewHelper for more details.
Impact
Using <f:
logs a deprecation level warning.
Affected installations
Instances with extensions that come with backend modules using Fluid rendering and
accessing <f:
are affected.
Migration
Switch to one of the other ViewHelpers instead, typically <f:
to secure a given HTML string, <f:
to parse links in HTML,
or <f:
to output the HTML as is when the input can be considered
"secure".