Scripts and data used for generating ZhConversion.php
[lhc/web/wiklou.git] / includes / SpecialLonelypages.php
index 0c026e2..64c3e00 100644 (file)
@@ -1,13 +1,30 @@
 <?php
+/**
+ *
+ * @package MediaWiki
+ * @subpackage SpecialPage
+ */
 
+/**
+ *
+ */
 require_once( "QueryPage.php" );
 
+/**
+ *
+ * @package MediaWiki
+ * @subpackage SpecialPage
+ */
 class LonelyPagesPage extends PageQueryPage {
-       
+
        function getName() {
                return "Lonelypages";
        }
-       
+
+       function sortDescending() {
+               return false;
+       }
+
        function isExpensive() {
                return true;
        }
@@ -22,11 +39,14 @@ class LonelyPagesPage extends PageQueryPage {
        }
 }
 
+/**
+ * Constructor
+ */
 function wfSpecialLonelypages() {
        list( $limit, $offset ) = wfCheckLimits();
-       
+
        $lpp = new LonelyPagesPage();
-       
+
        return $lpp->doQuery( $offset, $limit );
 }