Index: trunk/phase3/RELEASE-NOTES |
— | — | @@ -223,6 +223,7 @@ |
224 | 224 | * (bug 17460) Client ecoding is now correctly set for PostgreSQL |
225 | 225 | * (bug 17648) Prevent floats from intruding into edit area in previews if no toolbar present |
226 | 226 | * (bug 16899) DISPLAYTITLE should allow Arabic and Persian harakats |
| 227 | +* (bug 17692) Added (list of members) link to 'user' in Special:Listgrouprights |
227 | 228 | |
228 | 229 | == API changes in 1.15 == |
229 | 230 | * (bug 16858) Revamped list=deletedrevs to make listing deleted contributions |
— | — | @@ -345,4 +346,4 @@ |
346 | 347 | |
347 | 348 | === IRC help === |
348 | 349 | |
349 | | -There's usually someone online in #mediawiki on irc.freenode.net |
\ No newline at end of file |
| 350 | +There's usually someone online in #mediawiki on irc.freenode.net |
Index: trunk/phase3/includes/specials/SpecialListgrouprights.php |
— | — | @@ -63,10 +63,13 @@ |
64 | 64 | $grouppage = $this->skin->makeLink( $grouppageLocalized, $groupnameLocalized ); |
65 | 65 | } |
66 | 66 | |
67 | | - if ( !in_array( $group, $wgImplicitGroups ) ) { |
| 67 | + if ( $group === 'user' ) { |
| 68 | + // Link to Special:listusers for implicit group 'user' |
| 69 | + $grouplink = '<br />' . $this->skin->makeKnownLinkObj( SpecialPage::getTitleFor( 'Listusers' ), wfMsgHtml( 'listgrouprights-members' ), '' ); |
| 70 | + } elseif ( !in_array( $group, $wgImplicitGroups ) ) { |
68 | 71 | $grouplink = '<br />' . $this->skin->makeKnownLinkObj( SpecialPage::getTitleFor( 'Listusers' ), wfMsgHtml( 'listgrouprights-members' ), 'group=' . $group ); |
69 | 72 | } else { |
70 | | - // No link to Special:listusers for implicit groups as they are unlistable |
| 73 | + // No link to Special:listusers for other implicit groups as they are unlistable |
71 | 74 | $grouplink = ''; |
72 | 75 | } |
73 | 76 | |