From 316c424f0594d3cb64f16f64ba845b61ac923ead Mon Sep 17 00:00:00 2001 From: Oliver Hader Date: Tue, 1 Sep 2009 17:19:02 +0000 Subject: [PATCH] Fixed bug #11844: Description in about module uses htmlspecialchars which is wrong git-svn-id: https://svn.typo3.org/TYPO3v4/Core/trunk@5871 709f56b5-9817-0410-a4d7-c38de5d9e867 --- ChangeLog | 1 + typo3/class.alt_menu_functions.inc | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 8da9da9cd27..efd5cc03d89 100755 --- a/ChangeLog +++ b/ChangeLog @@ -4,6 +4,7 @@ * 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 diff --git a/typo3/class.alt_menu_functions.inc b/typo3/class.alt_menu_functions.inc index d6bd9a7a574..1667aa709b5 100644 --- a/typo3/class.alt_menu_functions.inc +++ b/typo3/class.alt_menu_functions.inc @@ -357,7 +357,7 @@ class alt_menu_functions { // For "About modules": $moduleLabel = htmlspecialchars($LANG->moduleLabels['labels'][$subKey.'label']); $moduleLabelHtml = !empty($moduleLabel) ? '' . $moduleLabel . '
' : ''; - $moduleDescription = htmlspecialchars($LANG->moduleLabels['labels'][$subKey.'descr']); + $moduleDescription = $LANG->moduleLabels['labels'][$subKey.'descr']; $descrCode.=' -- 2.20.1