From c1878b5b5d2ce20578204729180d06504a563633 Mon Sep 17 00:00:00 2001 From: =?utf8?q?=C3=86var=20Arnfj=C3=B6r=C3=B0=20Bjarmason?= Date: Sat, 3 Dec 2005 18:29:13 +0000 Subject: [PATCH] * Removed call to htmlspecialchars(), undesireable --- includes/SpecialVersion.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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() { -- 2.20.1