diff options
Diffstat (limited to 'includes/specials/SpecialUnusedtemplates.php')
-rw-r--r-- | includes/specials/SpecialUnusedtemplates.php | 13 |
1 files changed, 10 insertions, 3 deletions
diff --git a/includes/specials/SpecialUnusedtemplates.php b/includes/specials/SpecialUnusedtemplates.php index 89acd09c..6ddbab32 100644 --- a/includes/specials/SpecialUnusedtemplates.php +++ b/includes/specials/SpecialUnusedtemplates.php @@ -33,11 +33,18 @@ class UnusedtemplatesPage extends QueryPage { function formatResult( $skin, $result ) { $title = Title::makeTitle( NS_TEMPLATE, $result->title ); - $pageLink = $skin->makeKnownLinkObj( $title, '', 'redirect=no' ); - $wlhLink = $skin->makeKnownLinkObj( + $pageLink = $skin->linkKnown( + $title, + null, + array(), + array( 'redirect' => 'no' ) + ); + $wlhLink = $skin->linkKnown( SpecialPage::getTitleFor( 'Whatlinkshere' ), wfMsgHtml( 'unusedtemplateswlh' ), - 'target=' . $title->getPrefixedUrl() ); + array(), + array( 'target' => $title->getPrefixedText() ) + ); return wfSpecialList( $pageLink, $wlhLink ); } |