Index: trunk/phase3/includes/specials/SpecialListusers.php |
— | — | @@ -129,7 +129,7 @@ |
130 | 130 | return ''; |
131 | 131 | |
132 | 132 | $userPage = Title::makeTitle( NS_USER, $row->user_name ); |
133 | | - $name = $this->getSkin()->link( $userPage, htmlspecialchars( $userPage->getText() ) ); |
| 133 | + $name = Linker::link( $userPage, htmlspecialchars( $userPage->getText() ) ); |
134 | 134 | |
135 | 135 | $groups_list = self::getGroups( $row->user_id ); |
136 | 136 | if( count( $groups_list ) > 0 ) { |
— | — | @@ -305,7 +305,7 @@ |
306 | 306 | $s .= Html::rawElement( 'ul', array(), $usersbody ); |
307 | 307 | $s .= $up->getNavigationBar(); |
308 | 308 | } else { |
309 | | - $s .= wfMessage( 'listusers-noresult' )->parseBlock(); |
| 309 | + $s .= wfMessage( 'listusers-noresult' )->parseAsBlock(); |
310 | 310 | } |
311 | 311 | |
312 | 312 | $wgOut->addHTML( $s ); |