Index: trunk/phase3/includes/specials/SpecialListgrouprights.php |
— | — | @@ -100,7 +100,7 @@ |
101 | 101 | $r = array(); |
102 | 102 | foreach( $permissions as $permission => $granted ) { |
103 | 103 | if ( $granted ) { |
104 | | - $description = wfMsgExt( 'listgrouprights-right-display', array( 'parse' ), |
| 104 | + $description = wfMsgExt( 'listgrouprights-right-display', array( 'parseinline' ), |
105 | 105 | User::getRightDescription( $permission ), |
106 | 106 | $permission |
107 | 107 | ); |
— | — | @@ -111,12 +111,12 @@ |
112 | 112 | if( $add === true ){ |
113 | 113 | $r[] = wfMsgExt( 'listgrouprights-addgroup-all', array( 'escape' ) ); |
114 | 114 | } else if( is_array( $add ) && count( $add ) ) { |
115 | | - $r[] = wfMsgExt( 'listgrouprights-addgroup', array( 'parse' ), $wgLang->listToText( array_map( array( 'User', 'makeGroupLinkWiki' ), $add ) ), count( $add ) ); |
| 115 | + $r[] = wfMsgExt( 'listgrouprights-addgroup', array( 'parseinline' ), $wgLang->listToText( array_map( array( 'User', 'makeGroupLinkWiki' ), $add ) ), count( $add ) ); |
116 | 116 | } |
117 | 117 | if( $remove === true ){ |
118 | 118 | $r[] = wfMsgExt( 'listgrouprights-removegroup-all', array( 'escape' ) ); |
119 | 119 | } else if( is_array( $remove ) && count( $remove ) ) { |
120 | | - $r[] = wfMsgExt( 'listgrouprights-removegroup', array( 'parse' ), $wgLang->listToText( array_map( array( 'User', 'makeGroupLinkWiki' ), $remove ) ), count( $remove ) ); |
| 120 | + $r[] = wfMsgExt( 'listgrouprights-removegroup', array( 'parseinline' ), $wgLang->listToText( array_map( array( 'User', 'makeGroupLinkWiki' ), $remove ) ), count( $remove ) ); |
121 | 121 | } |
122 | 122 | if( empty( $r ) ) { |
123 | 123 | return ''; |
Index: trunk/phase3/RELEASE-NOTES |
— | — | @@ -42,7 +42,8 @@ |
43 | 43 | sidebar and add custom portlets to it |
44 | 44 | * Added 'MakeGlobalVariablesScript' hook for extensions to be able to add vari- |
45 | 45 | ables into into the output of Skin::makeVariablesScript |
46 | | -* Added $wgAddGroups and $wgRemoveGroups display on Special:ListGroupRights |
| 46 | +* (bug 13846) Added $wgAddGroups and $wgRemoveGroups display on |
| 47 | + Special:ListGroupRights |
47 | 48 | * (bug 14377) Add a date selector to history pages |
48 | 49 | * (bug 15007) New 'pagetitle-view-mainpage' message allows the HTML <title> of |
49 | 50 | the main page to be customized |