From a4e05bafd505433bcdc9e54ab663a7c09bc59b14 Mon Sep 17 00:00:00 2001 From: River Tarnell Date: Thu, 14 Oct 2004 09:26:51 +0000 Subject: [PATCH] don't double escape --- includes/Credits.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/includes/Credits.php b/includes/Credits.php index 849fb00d81..d2877820ec 100644 --- a/includes/Credits.php +++ b/includes/Credits.php @@ -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); -- 2.20.1