Index: trunk/extensions/CentralAuth/SpecialGlobalGroupPermissions.php |
— | — | @@ -172,7 +172,7 @@ |
173 | 173 | |
174 | 174 | function buildCheckboxes( $group ) { |
175 | 175 | |
176 | | - global $wgUser; |
| 176 | + global $wgUser, $wgOut; |
177 | 177 | $editable = $this->userCanEdit( $wgUser ); |
178 | 178 | |
179 | 179 | $rights = User::getAllRights(); |
— | — | @@ -190,7 +190,7 @@ |
191 | 191 | # Build a checkbox. |
192 | 192 | $checked = in_array( $right, $assignedRights ); |
193 | 193 | |
194 | | - $desc = htmlspecialchars( User::getRightDescription( $right ) ) . ' ' . |
| 194 | + $desc = $wgOut->parseInline( User::getRightDescription( $right ) ) . ' ' . |
195 | 195 | Xml::element( 'tt', null, wfMsg( 'parentheses', $right ) ); |
196 | 196 | |
197 | 197 | $checkbox = Xml::check( "wpRightAssigned-$right", $checked, $attribs ); |