From 5d012d331a1e5df43aa760121ae635ac67d74ee9 Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Sat, 7 Aug 2004 01:18:19 +0000 Subject: [PATCH] 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) --- includes/SpecialListusers.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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; -- 2.20.1