From: Ævar Arnfjörð Bjarmason Date: Sat, 3 Dec 2005 18:29:13 +0000 (+0000) Subject: * Removed call to htmlspecialchars(), undesireable X-Git-Tag: 1.6.0~1052 X-Git-Url: http://git.cyclocoop.org/geomaker.php?a=commitdiff_plain;h=c1878b5b5d2ce20578204729180d06504a563633;p=lhc%2Fweb%2Fwiklou.git * Removed call to htmlspecialchars(), undesireable --- diff --git a/includes/SpecialVersion.php b/includes/SpecialVersion.php index 4f3a81aba6..c1cb8bc825 100644 --- a/includes/SpecialVersion.php +++ b/includes/SpecialVersion.php @@ -137,7 +137,7 @@ class SpecialVersion { if ( isset( $author ) ) $ret .= ' by ' . $this->langObj->listToText( (array)$author ); - return htmlspecialchars( $ret ) . "\n"; + return "$ret\n"; } function wgHooks() {