don't double escape
authorRiver Tarnell <kateturner@users.mediawiki.org>
Thu, 14 Oct 2004 09:26:51 +0000 (09:26 +0000)
committerRiver Tarnell <kateturner@users.mediawiki.org>
Thu, 14 Oct 2004 09:26:51 +0000 (09:26 +0000)
includes/Credits.php

index 849fb00..d287782 100644 (file)
@@ -74,8 +74,8 @@ function getAuthorCredits($article) {
        $author_credit = wfMsg('anonymous');
     } else {
        
-       $real_name = htmlspecialchars( User::whoIsReal($last_author) );
-       $user_name = htmlspecialchars( User::whoIs($last_author) );
+       $real_name = User::whoIsReal($last_author);
+       $user_name = User::whoIs($last_author);
        
        if (!empty($real_name)) {
            $author_credit = creditLink($user_name, $real_name);