Bug pointed out by siebrand: should use the messages for the group, not for the group...
authorAryeh Gregor <simetrical@users.mediawiki.org>
Mon, 31 Mar 2008 14:17:59 +0000 (14:17 +0000)
committerAryeh Gregor <simetrical@users.mediawiki.org>
Mon, 31 Mar 2008 14:17:59 +0000 (14:17 +0000)
includes/SpecialUserrights.php

index 23fb464..29a62e8 100644 (file)
@@ -387,7 +387,7 @@ class UserrightsPage extends SpecialPage {
        private static function buildGroupLink( $group ) {
                static $cache = array();
                if( !isset( $cache[$group] ) )
-                       $cache[$group] = User::makeGroupLinkHtml( $group, User::getGroupMember( $group ) );
+                       $cache[$group] = User::makeGroupLinkHtml( $group, User::getGroupName( $group ) );
                return $cache[$group];
        }