From: Raimond Spekking Date: Tue, 19 Jun 2007 13:38:14 +0000 (+0000) Subject: * Allow wikilinks in header of Special:Withoutinterwiki X-Git-Tag: 1.31.0-rc.0~52502 X-Git-Url: https://git.cyclocoop.org//%22?a=commitdiff_plain;h=2cc6e469c3b82fdd30639f54d505fdfbaa5f4373;p=lhc%2Fweb%2Fwiklou.git * Allow wikilinks in header of Special:Withoutinterwiki * Whitespaces --- 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() {