Skip to content
Snippets Groups Projects
Commit 1beef8d9 authored by Susanne Moog's avatar Susanne Moog Committed by Daniel Goerz
Browse files

[BUGFIX] Escaping IRRE title once is enough

The title property of IRRE file relations (sys_file_reference) were
doubly escaped - once is enough.

Resolves: #88514
Releases: master, 9.5
Change-Id: I50f5f9db70cdd1af8fb6f7e9e2de1d3eb3f3cc0e
Reviewed-on: https://review.typo3.org/c/Packages/TYPO3.CMS/+/63814


Tested-by: default avatarAndreas Fernandez <a.fernandez@scripting-base.de>
Tested-by: default avatarTYPO3com <noreply@typo3.com>
Tested-by: default avatarDaniel Goerz <daniel.goerz@posteo.de>
Reviewed-by: default avatarAndreas Fernandez <a.fernandez@scripting-base.de>
Reviewed-by: default avatarDaniel Goerz <daniel.goerz@posteo.de>
parent 543fa223
Branches
Tags
No related merge requests found
......@@ -66,7 +66,7 @@ class UserFileInlineLabelService
}
}
$value = BackendUtility::getRecordTitlePrep(htmlspecialchars($fullTitle));
$value = BackendUtility::getRecordTitlePrep($fullTitle);
} else {
if (isset($params['row'][$field])) {
$value = htmlspecialchars($params['row'][$field]);
......
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