From: River Tarnell Date: Thu, 14 Oct 2004 09:26:51 +0000 (+0000) Subject: don't double escape X-Git-Tag: 1.5.0alpha1~1538 X-Git-Url: http://git.cyclocoop.org///%22%40url%40//%22?a=commitdiff_plain;h=a4e05bafd505433bcdc9e54ab663a7c09bc59b14;p=lhc%2Fweb%2Fwiklou.git don't double escape --- 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);