From 0ee4ab374b2ca143fc7d0a7fec0456e15b743e82 Mon Sep 17 00:00:00 2001 From: Arne Heizmann Date: Sat, 31 Jul 2004 14:03:32 +0000 Subject: [PATCH] Bugfix by Alwin Meschede http://mail.wikipedia.org/pipermail/wikitech-l/2004-July/011778.html ff. --- includes/SpecialLonelypages.php | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/includes/SpecialLonelypages.php b/includes/SpecialLonelypages.php index 0c026e22a8..5bf4d8850f 100644 --- a/includes/SpecialLonelypages.php +++ b/includes/SpecialLonelypages.php @@ -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 ); } -- 2.20.1