diff options
author | Evan Prodromou <evanprodromou@users.mediawiki.org> | 2004-06-28 20:42:13 +0000 |
---|---|---|
committer | Evan Prodromou <evanprodromou@users.mediawiki.org> | 2004-06-28 20:42:13 +0000 |
commit | 4e9e22c4b1e5b6dc147dd342376ad48820247a4d (patch) | |
tree | bc204350ea30998b7e00f121bef537c59a3665e0 /includes/Credits.php | |
parent | 40503e6af2f491a774f4671ad27dbf3a90427625 (diff) | |
download | mediawikicore-4e9e22c4b1e5b6dc147dd342376ad48820247a4d.tar.gz mediawikicore-4e9e22c4b1e5b6dc147dd342376ad48820247a4d.zip |
In credit blocks, show user pages as missing/existing links, depending on
user page state.
Notes
Notes:
http://mediawiki.org/wiki/Special:Code/MediaWiki/4191
Diffstat (limited to 'includes/Credits.php')
-rw-r--r-- | includes/Credits.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/includes/Credits.php b/includes/Credits.php index 23e74a13b3a4..4e30b81582c9 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) { |