Skip to content
Snippets Groups Projects
Commit 5a446569 authored by Oliver Hader's avatar Oliver Hader Committed by Oliver Hader
Browse files

[BUGFIX] Transform internal URIs in backend user interface

This change allows using internal URIs (like t3://) in components
of the backend user interface like

* system news show below the backend login form
* rich text details of system reports

HTML sanitization is applied to mentioned components as well.

Resolves: #95179
Related: #67556
Releases: master
Change-Id: I94c91fbb27380b26b136eba604e5c1552061eab2
Reviewed-on: https://review.typo3.org/c/Packages/TYPO3.CMS/+/71020


Tested-by: default avatarOliver Bartsch <bo@cedev.de>
Tested-by: default avatarcore-ci <typo3@b13.com>
Tested-by: default avatarWouter Wolters <typo3@wouterwolters.nl>
Tested-by: default avatarOliver Hader <oliver.hader@typo3.org>
Reviewed-by: default avatarOliver Bartsch <bo@cedev.de>
Reviewed-by: default avatarWouter Wolters <typo3@wouterwolters.nl>
Reviewed-by: default avatarOliver Hader <oliver.hader@typo3.org>
parent 340ba0dc
Branches
Tags
No related merge requests found
......@@ -36,7 +36,7 @@
<f:section name="Item">
<p id="loginNewsItem-{item.uid}" class="typo3-login-news-heading">{item.header}</p>
<f:format.html>{item.content}</f:format.html>
{item.content -> f:transform.html() -> f:sanitize.html()}
<f:if condition="{item.date}"><p class="text-muted"><span class="sr-only"><f:translate key="login.news.date"/></span>{item.date}</p></f:if>
</f:section>
</html>
......@@ -8,7 +8,7 @@
{error}
</f:then>
<f:else>
<f:format.html parseFuncTSPath="">{content -> f:format.raw()}</f:format.html>
{content -> f:transform.html() -> f:sanitize.html()}
</f:else>
</f:if>
</f:section>
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment