Housekeeping
[lhc/web/wiklou.git] / includes / SpecialWithoutinterwiki.php
index 1567b29..3346458 100644 (file)
@@ -4,6 +4,7 @@
  * Special page lists pages without language links
  *
  * @package MediaWiki
+ * @addtogroup SpecialPage
  * @author Rob Church <robchur@gmail.com>
  */
 class WithoutInterwikiPage extends PageQueryPage {
@@ -11,9 +12,9 @@ class WithoutInterwikiPage extends PageQueryPage {
        function getName() {
                return 'Withoutinterwiki';
        }
-       
+
        function getPageHeader() {
-               return '<p>' . wfMsgHtml( 'withoutinterwiki-header' ) . '</p>';
+               return '<p>' . wfMsgExt( 'withoutinterwiki-header', array( 'parseinline' ) ) . '</p>';
        }
 
        function sortDescending() {
@@ -23,7 +24,7 @@ class WithoutInterwikiPage extends PageQueryPage {
        function isExpensive() {
                return true;
        }
-       
+
        function isSyndicated() {
                return false;
        }
@@ -43,7 +44,7 @@ class WithoutInterwikiPage extends PageQueryPage {
                      AND page_namespace=" . NS_MAIN . "
                      AND page_is_redirect = 0";
        }
-       
+
 }
 
 function wfSpecialWithoutinterwiki() {
@@ -52,4 +53,4 @@ function wfSpecialWithoutinterwiki() {
        $wip->doQuery( $offset, $limit );
 }
 
-?>
\ No newline at end of file
+