From 4e9e22c4b1e5b6dc147dd342376ad48820247a4d Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Mon, 28 Jun 2004 20:42:13 +0000 Subject: [PATCH] In credit blocks, show user pages as missing/existing links, depending on user page state. --- includes/Credits.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/includes/Credits.php b/includes/Credits.php index 23e74a13b3..4e30b81582 100644 --- a/includes/Credits.php +++ b/includes/Credits.php @@ -159,8 +159,8 @@ function getContributorCredits($article, $cnt, $showIfMax) { function creditLink($user_name, $link_text = '') { global $wgUser, $wgLang; $skin = $wgUser->getSkin(); - return $skin->makeKnownLink($wgLang->getNsText(NS_USER) . ":" . $user_name, - (empty($link_text)) ? $user_name : $link_text); + return $skin->makeLink($wgLang->getNsText(NS_USER) . ":" . $user_name, + (empty($link_text)) ? $user_name : $link_text); } function creditOthersLink($article) { -- 2.20.1