From 58c1510923caf4941ce477a5945aa6ff1da35ce4 Mon Sep 17 00:00:00 2001
From: Markus Klein <markus.klein@typo3.org>
Date: Tue, 26 Nov 2019 09:48:02 +0100
Subject: [PATCH] [BUGFIX] Fix double encoding of current page link in link
 wizard

Remove the double html encoding of the current link in the
PageLinkHandler.

The HTML is encoded centrally in the BrowseLinksController.
All other link handlers already send the plain content correctly.

Resolves: #89773
Releases: master, 9.5
Change-Id: I83ac730f150009c1ef6fc286fa26b4a829b2b412
Reviewed-on: https://review.typo3.org/c/Packages/TYPO3.CMS/+/62432
Tested-by: Oliver Bartsch <bo@cedev.de>
Tested-by: TYPO3com <noreply@typo3.com>
Tested-by: Tobi Kretschmann <tobi@tobishome.de>
Tested-by: Richard Haeser <richard@maxserv.com>
Reviewed-by: Oliver Bartsch <bo@cedev.de>
Reviewed-by: Tobi Kretschmann <tobi@tobishome.de>
Reviewed-by: Richard Haeser <richard@maxserv.com>
---
 .../sysext/recordlist/Classes/LinkHandler/PageLinkHandler.php | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/typo3/sysext/recordlist/Classes/LinkHandler/PageLinkHandler.php b/typo3/sysext/recordlist/Classes/LinkHandler/PageLinkHandler.php
index 1c8a5949c0aa..c7865bdfb2f2 100644
--- a/typo3/sysext/recordlist/Classes/LinkHandler/PageLinkHandler.php
+++ b/typo3/sysext/recordlist/Classes/LinkHandler/PageLinkHandler.php
@@ -88,8 +88,8 @@ class PageLinkHandler extends AbstractLinkHandler implements LinkHandlerInterfac
         $id = (int)$this->linkParts['url']['pageuid'];
         $pageRow = BackendUtility::getRecordWSOL('pages', $id);
 
-        return htmlspecialchars($lang->getLL('page'))
-            . ' \'' . htmlspecialchars(GeneralUtility::fixed_lgd_cs($pageRow['title'], $titleLen)) . '\''
+        return $lang->getLL('page')
+            . ' \'' . GeneralUtility::fixed_lgd_cs($pageRow['title'], $titleLen) . '\''
             . ' (ID: ' . $id . ($this->linkParts['url']['fragment'] ? ', #' . $this->linkParts['url']['fragment'] : '') . ')';
     }
 
-- 
GitLab