Bugfix by Alwin Meschede
authorArne Heizmann <timwi@users.mediawiki.org>
Sat, 31 Jul 2004 14:03:32 +0000 (14:03 +0000)
committerArne Heizmann <timwi@users.mediawiki.org>
Sat, 31 Jul 2004 14:03:32 +0000 (14:03 +0000)
http://mail.wikipedia.org/pipermail/wikitech-l/2004-July/011778.html ff.

includes/SpecialLonelypages.php

index 0c026e2..5bf4d88 100644 (file)
@@ -3,11 +3,15 @@
 require_once( "QueryPage.php" );
 
 class LonelyPagesPage extends PageQueryPage {
-       
+
        function getName() {
                return "Lonelypages";
        }
-       
+
+       function sortDescending() {
+               return false;
+       }
+
        function isExpensive() {
                return true;
        }
@@ -24,9 +28,9 @@ class LonelyPagesPage extends PageQueryPage {
 
 function wfSpecialLonelypages() {
        list( $limit, $offset ) = wfCheckLimits();
-       
+
        $lpp = new LonelyPagesPage();
-       
+
        return $lpp->doQuery( $offset, $limit );
 }