diff options
Diffstat (limited to 'includes/PageQueryPage.php')
-rw-r--r-- | includes/PageQueryPage.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/includes/PageQueryPage.php b/includes/PageQueryPage.php index 8390241f..dc5e971d 100644 --- a/includes/PageQueryPage.php +++ b/includes/PageQueryPage.php @@ -21,6 +21,6 @@ abstract class PageQueryPage extends QueryPage { if ( $title instanceof Title ) { $text = $wgContLang->convert( $title->getPrefixedText() ); } - return $skin->link( $title, htmlspecialchars( $text ), array(), array(), array('known', 'noclasses') ); + return Linker::linkKnown( $title, htmlspecialchars( $text ) ); } } |