Project

General

Profile

Actions

Bug #75662

closed

Cannot choose "Style" in Insert Link Popup - false htmlentities

Added by Andreas Moeller almost 8 years ago. Updated almost 8 years ago.

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 ...">
    &lt;option  value=""&gt;&lt;/option&gt;&lt;option selected="selected" value="internal-link"&gt;internal-link&lt;/option&gt;&lt;option  value="internal-link-new-window"&gt;internal-link-new-window&lt;/option&gt;
</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


Related issues 1 (0 open1 closed)

Is duplicate of TYPO3 Core - Bug #75548: RTE lacks dropdown content after updating to 6.2.21ClosedMarkus Klein2016-04-12

Actions
Actions #1

Updated by Wouter Wolters almost 8 years ago

  • Status changed from New to Closed

I close this as a duplicate of #75548 - please continue the discussion there and test the available patch if possible.

Thank you for the reporting.

Actions

Also available in: Atom PDF