Index: trunk/phase3/includes/specials/SpecialCategories.php |
— | — | @@ -120,10 +120,10 @@ |
121 | 121 | function formatRow($result) { |
122 | 122 | global $wgLang; |
123 | 123 | $title = Title::makeTitle( NS_CATEGORY, $result->cat_title ); |
124 | | - $titleText = $this->getSkin()->link( $title, htmlspecialchars( $title->getText() ) ); |
| 124 | + $titleText = Linker::link( $title, htmlspecialchars( $title->getText() ) ); |
125 | 125 | $count = wfMsgExt( 'nmembers', array( 'parsemag', 'escape' ), |
126 | 126 | $wgLang->formatNum( $result->cat_pages ) ); |
127 | | - return Xml::tags('li', null, "$titleText ($count)" ) . "\n"; |
| 127 | + return Xml::tags('li', null, wfSpecialList( $titleText, $count ) ) . "\n"; |
128 | 128 | } |
129 | 129 | |
130 | 130 | public function getStartForm( $from ) { |