Skip to content
Snippets Groups Projects
Commit f47faeda authored by Alexander Stehlik's avatar Alexander Stehlik Committed by Markus Klein
Browse files

[BUGFIX] No double htmlspecialchars for filemount select

Since the labels and values of select items are run through
htmlspecialchars by the FormEngine there is no need to use
htmlspecialchars in the renderTceformsSelectDropdown() method which
generates the select items for the filemount Backend form.

The current code will htmlencode the select value twice which results
in a htmlencoded value in the database which causes problems with
directory names that contain special characters.

Resolves: #54027
Releases: 6.2, 6.1, 6.0
Change-Id: I7ec8262f6c3d20879cde0679636a6a8e5c1d19cd
Reviewed-on: https://review.typo3.org/25770
Reviewed-by: Helmut Hummel
Tested-by: Helmut Hummel
Reviewed-by: Oliver Klee
Reviewed-by: Markus Klein
Tested-by: Markus Klein
parent deb7bf3a
Branches
Tags
No related merge requests found
......@@ -66,8 +66,8 @@ class UserFileMountService {
$folderItems = $this->getSubfoldersForOptionList($rootLevelFolder);
foreach ($folderItems as $item) {
$PA['items'][] = array(
htmlspecialchars($item->getIdentifier()),
htmlspecialchars($item->getIdentifier())
$item->getIdentifier(),
$item->getIdentifier()
);
}
} else {
......
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