From: Arne Heizmann Date: Sat, 31 Jul 2004 14:03:32 +0000 (+0000) Subject: Bugfix by Alwin Meschede X-Git-Tag: 1.5.0alpha1~2559 X-Git-Url: https://git.cyclocoop.org/%7B%24www_url%7Dadmin/compta/banques/%7B%7B%20url_for%28%27admin_users%27%29%20%7D%7D?a=commitdiff_plain;h=0ee4ab374b2ca143fc7d0a7fec0456e15b743e82;p=lhc%2Fweb%2Fwiklou.git Bugfix by Alwin Meschede http://mail.wikipedia.org/pipermail/wikitech-l/2004-July/011778.html ff. --- 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 ); }