* Allow wikilinks in header of Special:Withoutinterwiki
authorRaimond Spekking <raymond@users.mediawiki.org>
Tue, 19 Jun 2007 13:38:14 +0000 (13:38 +0000)
committerRaimond Spekking <raymond@users.mediawiki.org>
Tue, 19 Jun 2007 13:38:14 +0000 (13:38 +0000)
* Whitespaces

RELEASE-NOTES
includes/SpecialWithoutinterwiki.php

index bd4621d..fa6b710 100644 (file)
@@ -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 ==
 
index e5341d5..ca076a8 100644 (file)
@@ -12,9 +12,9 @@ class WithoutInterwikiPage extends PageQueryPage {
        function getName() {
                return 'Withoutinterwiki';
        }
-       
+
        function getPageHeader() {
-               return '<p>' . wfMsgHtml( 'withoutinterwiki-header' ) . '</p>';
+               return '<p>' . wfMsgWithLinks( 'withoutinterwiki-header' ) . '</p>';
        }
 
        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() {