Index: t3lib/class.t3lib_browsetree.php =================================================================== --- t3lib/class.t3lib_browsetree.php (Revision 8453) +++ t3lib/class.t3lib_browsetree.php (Arbeitskopie) @@ -162,7 +162,7 @@ $rows = $GLOBALS['TYPO3_DB']->exec_SELECTgetRows('domainName,sorting', 'sys_domain', 'pid=' . $GLOBALS['TYPO3_DB']->quoteStr($row['uid'], 'sys_domain'), '', 'sorting', 1); if (is_array($rows) && count($rows) > 0) { - $title = sprintf('%s [%s]', $title, $rows[0]['domainName']); + $title = sprintf('%s [%s]', $title, htmlspecialchars($rows[0]['domainName'])); } } return $title; Index: typo3/class.browse_links.php =================================================================== --- typo3/class.browse_links.php (Revision 8453) +++ typo3/class.browse_links.php (Arbeitskopie) @@ -423,8 +423,6 @@ * @return string Wrapping title string. */ function wrapTitle($title,$v,$ext_pArrPages) { - $title = htmlspecialchars($title); - if ($ext_pArrPages) { $ficon=t3lib_iconWorks::getIcon('pages',$v); $onClick = "return insertElement('pages', '".$v['uid']."', 'db', ".t3lib_div::quoteJSvalue($v['title']).", '', '', '".$ficon."','',1);";