From 2cc6e469c3b82fdd30639f54d505fdfbaa5f4373 Mon Sep 17 00:00:00 2001 From: Raimond Spekking Date: Tue, 19 Jun 2007 13:38:14 +0000 Subject: [PATCH] * Allow wikilinks in header of Special:Withoutinterwiki * Whitespaces --- RELEASE-NOTES | 1 + includes/SpecialWithoutinterwiki.php | 8 ++++---- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/RELEASE-NOTES b/RELEASE-NOTES index bd4621dc0e..fa6b710bb2 100644 --- a/RELEASE-NOTES +++ b/RELEASE-NOTES @@ -88,6 +88,7 @@ it from source control: http://www.mediawiki.org/wiki/Download_from_SVN * Group log output by date * Kurdish interface latin/arabic writing system with transliteration * Add number of links to Special:Whatlinkshere +* Allow wikilinks in header of Special:Withoutinterwiki == Bugfixes since 1.10 == diff --git a/includes/SpecialWithoutinterwiki.php b/includes/SpecialWithoutinterwiki.php index e5341d5df4..ca076a8ad3 100644 --- a/includes/SpecialWithoutinterwiki.php +++ b/includes/SpecialWithoutinterwiki.php @@ -12,9 +12,9 @@ class WithoutInterwikiPage extends PageQueryPage { function getName() { return 'Withoutinterwiki'; } - + function getPageHeader() { - return '

' . wfMsgHtml( 'withoutinterwiki-header' ) . '

'; + return '

' . wfMsgWithLinks( 'withoutinterwiki-header' ) . '

'; } function sortDescending() { @@ -24,7 +24,7 @@ class WithoutInterwikiPage extends PageQueryPage { function isExpensive() { return true; } - + function isSyndicated() { return false; } @@ -44,7 +44,7 @@ class WithoutInterwikiPage extends PageQueryPage { AND page_namespace=" . NS_MAIN . " AND page_is_redirect = 0"; } - + } function wfSpecialWithoutinterwiki() { -- 2.20.1