Skip to content
Snippets Groups Projects
Commit 2b8d612c authored by Thomas Schur's avatar Thomas Schur Committed by Christian Kuhn
Browse files

[BUGFIX] Prevent duplicated special char in backend breadcrumb

Prevent duplicated special char conversion of page title in
TYPO3 backend breadcrumb and fix title cropping

Resolves: #81242
Releases: master, 8.7
Change-Id: Id7710d8d8f79e20b20f43569558833d3d3f68f16
Reviewed-on: https://review.typo3.org/52820


Reviewed-by: default avatarJan Helke <typo3@helke.de>
Tested-by: default avatarJan Helke <typo3@helke.de>
Tested-by: default avatarTYPO3com <no-reply@typo3.com>
Reviewed-by: default avatarChristian Kuhn <lolli@schwarzbu.ch>
Tested-by: default avatarChristian Kuhn <lolli@schwarzbu.ch>
parent f2292aba
Branches
Tags
No related merge requests found
......@@ -123,13 +123,13 @@ class MetaInformation
/**
* Setting page title
*
* @return string Record title
* @return string Record title, already htmlspecialchar()'ed
*/
public function getRecordInformationTitle()
{
$recordInformations = $this->getRecordInformations();
if (!empty($recordInformations)) {
$title = htmlspecialchars($recordInformations['title']);
$title = $recordInformations['title'];
} else {
$title = '';
}
......@@ -137,14 +137,7 @@ class MetaInformation
// crop the title to title limit (or 50, if not defined)
$beUser = $this->getBackendUser();
$cropLength = empty($beUser->uc['titleLen']) ? 50 : $beUser->uc['titleLen'];
$croppedTitle = GeneralUtility::fixed_lgd_cs($title, $cropLength);
if ($croppedTitle !== $title) {
$recordInformationTitle = htmlspecialchars($croppedTitle);
} else {
$recordInformationTitle = htmlspecialchars($title);
}
return $recordInformationTitle;
return htmlspecialchars(GeneralUtility::fixed_lgd_cs($title, $cropLength));
}
/**
......@@ -231,7 +224,7 @@ class MetaInformation
return [
'uid' => $uid,
'icon' => $theIcon,
'title' => htmlspecialchars($title),
'title' => $title,
'additionalInfo' => $additionalInfo
];
}
......
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