* Added feature #10724: Provide a check that compares a given URL with the host, TYPO3 is running on (thanks to Marcus Krause)
* Follow-up to feature #10724: Added unit tests for isValidUrl() and isOnCurrentHost() in t3lib_div (thanks to Marcus Krause)
* Fixed bug #11845: Typo in a CLI error mesage: suue -> sure (thanks to Oliver Klee)
+ * Fixed bug #11844: Description in about module uses htmlspecialchars which is wrong (thanks to Georg Ringer)
2009-09-01 Sebastian Kurfuerst <sebastian@typo3.org>
// For "About modules":
$moduleLabel = htmlspecialchars($LANG->moduleLabels['labels'][$subKey.'label']);
$moduleLabelHtml = !empty($moduleLabel) ? '<strong>' . $moduleLabel . '</strong><br />' : '';
- $moduleDescription = htmlspecialchars($LANG->moduleLabels['labels'][$subKey.'descr']);
+ $moduleDescription = $LANG->moduleLabels['labels'][$subKey.'descr'];
$descrCode.='
<tr class="c-subitem-row">