* (bug 16817) Group names in user rights log are now singular and in lowercase
authorAlexandre Emsenhuber <ialex@users.mediawiki.org>
Thu, 8 Apr 2010 10:15:04 +0000 (10:15 +0000)
committerAlexandre Emsenhuber <ialex@users.mediawiki.org>
Thu, 8 Apr 2010 10:15:04 +0000 (10:15 +0000)
RELEASE-NOTES
includes/LogPage.php

index 3da77e6..ebaf08b 100644 (file)
@@ -97,6 +97,7 @@ it from source control: http://www.mediawiki.org/wiki/Download_from_SVN
 * (bug 23078) "All public logs" option on Special:Log is now always the first
   item
 * Special:ChangePassword no longer loads user javascript
+* (bug 16817) Group names in user rights log are now singular and in lowercase
 
 === API changes in 1.17 ===
 * (bug 22738) Allow filtering by action type on query=logevent
index 62eb382..b79ff10 100644 (file)
@@ -189,7 +189,7 @@ class LogPage {
                                                $rightsnone = wfMsg( 'rightsnone' );
                                                foreach ( $params as &$param ) {
                                                        $groupArray = array_map( 'trim', explode( ',', $param ) );
-                                                       $groupArray = array_map( array( 'User', 'getGroupName' ), $groupArray );
+                                                       $groupArray = array_map( array( 'User', 'getGroupMember' ), $groupArray );
                                                        $param = $wgLang->listToText( $groupArray );
                                                }
                                        } else {