Tell regexp parser to use extra analysis on external link regexp;
[lhc/web/wiklou.git] / includes / SpecialLonelypages.php
index 0c026e2..d8d97d8 100644 (file)
@@ -1,16 +1,34 @@
 <?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;
        }
+       function isSyndicated() { return false; }
        
        function getSQL() {
                $dbr =& wfGetDB( DB_SLAVE );
@@ -22,11 +40,14 @@ class LonelyPagesPage extends PageQueryPage {
        }
 }
 
+/**
+ * Constructor
+ */
 function wfSpecialLonelypages() {
        list( $limit, $offset ) = wfCheckLimits();
-       
+
        $lpp = new LonelyPagesPage();
-       
+
        return $lpp->doQuery( $offset, $limit );
 }