* Removed call to htmlspecialchars(), undesireable
authorÆvar Arnfjörð Bjarmason <avar@users.mediawiki.org>
Sat, 3 Dec 2005 18:29:13 +0000 (18:29 +0000)
committerÆvar Arnfjörð Bjarmason <avar@users.mediawiki.org>
Sat, 3 Dec 2005 18:29:13 +0000 (18:29 +0000)
includes/SpecialVersion.php

index 4f3a81a..c1cb8bc 100644 (file)
@@ -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() {