Actions
Bug #75662
closedCannot choose "Style" in Insert Link Popup - false htmlentities
Status:
Closed
Priority:
Must have
Assignee:
-
Category:
-
Target version:
-
Start date:
2016-04-15
Due date:
% Done:
0%
Estimated time:
TYPO3 Version:
6.2
PHP Version:
Tags:
Complexity:
Is Regression:
No
Sprint Focus:
Description
Hi there,
I installed a fresh version of TYPO3 6.2.21
When I try to insert a link into an RTE editor, the "Insert Link" Popup opens. But the field "Style:" is disabled.
The reason is, that the OPTIONS-Tags inside the HTML code are escaped by htmlentities.
The HTML source code of the TYPO3 backend looks like this:
<select name="anchor_class" onchange="some JS ..."> <option value=""></option><option selected="selected" value="internal-link">internal-link</option><option value="internal-link-new-window">internal-link-new-window</option> </select>
It should look like this:
<select name="anchor_class" onchange="some JS ..."> <option value=""></option><option selected="selected" value="internal-link">internal-link</option><option value="internal-link-new-window">internal-link-new-window</option> </select>
Regards,
Andreas
Actions