From 1dce99f7bd4bfa66c95e5420a7cf41b1fad4a32c Mon Sep 17 00:00:00 2001 From: Markus Klein <markus.klein@typo3.org> Date: Wed, 25 May 2016 14:07:17 +0200 Subject: [PATCH] [BUGFIX] Do not escape system information label with HTML Resolves: #76296 Releases: master Change-Id: I039e031ff6f46c94d474c35c43de372cfc5b0fc2 Reviewed-on: https://review.typo3.org/48286 Reviewed-by: Wouter Wolters <typo3@wouterwolters.nl> Tested-by: Elmar Hinz <t3elmar@gmail.com> Reviewed-by: Gianluigi Martino <gmartino27@gmail.com> Tested-by: Gianluigi Martino <gmartino27@gmail.com> Reviewed-by: Andreas Fernandez <typo3@scripting-base.de> Tested-by: Andreas Fernandez <typo3@scripting-base.de> --- .../Private/Templates/ToolbarMenu/SystemInformation.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/typo3/sysext/backend/Resources/Private/Templates/ToolbarMenu/SystemInformation.html b/typo3/sysext/backend/Resources/Private/Templates/ToolbarMenu/SystemInformation.html index 3e30c45091cc..127328342649 100644 --- a/typo3/sysext/backend/Resources/Private/Templates/ToolbarMenu/SystemInformation.html +++ b/typo3/sysext/backend/Resources/Private/Templates/ToolbarMenu/SystemInformation.html @@ -1,7 +1,7 @@ <ul class="dropdown-list" data-count="{count}" data-severityclass="{severityBadgeClass}"> <li class="dropdown-header"><f:translate key="systemmessage.header" /></li> <li id="systeminformation_installtool" class="dropdown-intro typo3-module-menu-item submodule mod-system_extinstall" data-modulename="system_extinstall"> - <f:translate key="systemmessage.intro" arguments="{0: '{installToolUrl}'}" /> + <f:format.raw><f:translate key="systemmessage.intro" arguments="{0: '{installToolUrl}'}" /></f:format.raw> </li> <li> <dl class="dl-horizontal"> -- GitLab