APIEDIT BRANCH MERGE:
[lhc/web/wiklou.git] / includes / SpecialLonelypages.php
index 810bd1e..e652f9d 100644 (file)
@@ -5,7 +5,8 @@
  */
 
 /**
- *
+ * A special page looking for articles with no article linking to them,
+ * thus being lonely.
  * @addtogroup SpecialPage
  */
 class LonelyPagesPage extends PageQueryPage {
@@ -14,7 +15,7 @@ class LonelyPagesPage extends PageQueryPage {
                return "Lonelypages";
        }
        function getPageHeader() {
-               return '<p>' . wfMsg('lonelypagestext') . '</p>';
+               return wfMsgExt( 'lonelypagestext', array( 'parse' ) );
        }
 
        function sortDescending() {
@@ -56,4 +57,4 @@ function wfSpecialLonelypages() {
        return $lpp->doQuery( $offset, $limit );
 }
 
-?>
+