.. include:: /Includes.rst.txt .. _deprecation-95041: =============================================== Deprecation: #95041 - view-helper =============================================== See :issue:`95041` Description =========== Fluid view-helper :html:`` was used in combination with :typoscript:`config.spamProtectEmailAddresses` settings during frontend rendering and returned corresponding :js:`javascript:linkTo_UnCryptMailto(...)` inline JavaScript URI. In case spam-protections is not configured, this view-helper just passed through the given email address. In favor of allowing more content security policy scenarios, :js:`URI` is not used anymore per default. As a result, :html:`` view-helper became obsolete. The view-helper will be removed with TYPO3 v12.0. Impact ====== Using :html:`` view-helper will trigger a PHP :php:`E_USER_DEPRECATED` error. Affected Installations ====================== All projects using :html:`` or :html:`{email -> f:uri.email(email:email)}` view-helper invocations in their Fluid templates. Migration ========= In case :typoscript:`config.spamProtectEmailAddresses` is used, make use of :html:`` view-helper which returns the complete :html:`` tag like this: .. code-block:: html user(at)my.example(dot)com In case spam-protected is not used or not useful (for example in backend user interface), view-helper invocation can be omitted completely. .. index:: Fluid, Frontend, FullyScanned, ext:fluid