Bug #75812
closedClass selector in link browser is empty
0%
Description
The class selector in the link browser ist empty in 6.2.21, but working in 6.2.19.
This is because the option elements are not shown in the browser due to usage of function htmlspecialchars.
See line 874 in typo3/sysext/rtehtmlarea/Classes/BrowseLinks.php
public function addClassSelector() {
$selectClass = '';
if ($this->classesAnchorJSOptions[$this->act]) {
$selectClass = '
<tr>
<td><label>' . $GLOBALS['LANG']->getLL('anchor_class', TRUE) . ':</label></td>
<td colspan="3">
<select name="anchor_class" onchange="' . htmlspecialchars($this->getClassOnChangeJS()) . '">
' . htmlspecialchars($this->classesAnchorJSOptions[$this->act]) . '
</select>
</td>
</tr>';
}
return $selectClass;
}
Updated by Wouter Wolters over 8 years ago
- Status changed from New to Closed
This has been resolved meanwhile with #75548 and will be part of the next 6.2 release.