From ca842b26f41824d3779245095b417b8ae6d42962 Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Sun, 23 Jan 2005 01:43:24 +0000 Subject: [PATCH] * (bug 1232) Fix sorting of cached Special:Wantedpages in miser mode Patch from zigger --- includes/SpecialWantedpages.php | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/includes/SpecialWantedpages.php b/includes/SpecialWantedpages.php index 1a59ae5df9..e345703d3a 100644 --- a/includes/SpecialWantedpages.php +++ b/includes/SpecialWantedpages.php @@ -40,13 +40,7 @@ class WantedPagesPage extends QueryPage { COUNT(DISTINCT bl_from) as value FROM $brokenlinks GROUP BY bl_to - HAVING $agrvalue > 1 - ORDER BY $agrvalue ". - ($this->sortDescending() ? 'DESC' : ''); - } - - function getOrder() { - return ''; + HAVING $agrvalue > 1"; } function formatResult( $skin, $result ) { -- 2.20.1