Query already does ORDER BY value, so remove manual order by from r103759
authorSam Reed <reedy@users.mediawiki.org>
Sun, 20 Nov 2011 15:01:09 +0000 (15:01 +0000)
committerSam Reed <reedy@users.mediawiki.org>
Sun, 20 Nov 2011 15:01:09 +0000 (15:01 +0000)
includes/specials/SpecialMostlinkedcategories.php

index 672462a..9cbc936 100644 (file)
@@ -43,7 +43,6 @@ class MostlinkedCategoriesPage extends QueryPage {
                        'fields' => array ( 'cat_title AS title',
                                        NS_CATEGORY . ' AS namespace',
                                        'cat_pages AS value' ),
-                       'options' => array ( 'ORDER BY' => 'cat_pages' )
                );
        }