From: Brion Vibber Date: Sat, 7 Aug 2004 01:18:19 +0000 (+0000) Subject: Use makeLink instead of makeKnownLink in the users list to match everywhere X-Git-Tag: 1.5.0alpha1~2491 X-Git-Url: http://git.cyclocoop.org/%7B%7B%20url_for%28%27admin_vote_add%27%29%20%7D%7D?a=commitdiff_plain;h=5d012d331a1e5df43aa760121ae635ac67d74ee9;p=lhc%2Fweb%2Fwiklou.git Use makeLink instead of makeKnownLink in the users list to match everywhere else in the universe. Fix for [ 1000272 ] Red links in List of users (special pages) --- diff --git a/includes/SpecialListusers.php b/includes/SpecialListusers.php index 4a9f659149..0d8aa6145e 100644 --- a/includes/SpecialListusers.php +++ b/includes/SpecialListusers.php @@ -26,10 +26,10 @@ class ListUsersPage extends QueryPage { function formatResult( $skin, $result ) { global $wgLang; - $name = $skin->makeKnownLink( $wgLang->getNsText($result->namespace) . ':' . $result->title, $result->title ); + $name = $skin->makeLink( $wgLang->getNsText($result->namespace) . ':' . $result->title, $result->title ); if( '' != $result->type ) { $name .= ' (' . - $skin->makeKnownLink( wfMsg( "administrators" ), $result->type) . + $skin->makeLink( wfMsg( "administrators" ), $result->type) . ')'; } return $name;