From: Sam Reed Date: Sun, 20 Nov 2011 15:01:09 +0000 (+0000) Subject: Query already does ORDER BY value, so remove manual order by from r103759 X-Git-Tag: 1.31.0-rc.0~26387 X-Git-Url: http://git.cyclocoop.org/%24href?a=commitdiff_plain;h=6fc38f7acba4c473ba664ed0a3e1322c49d286cc;p=lhc%2Fweb%2Fwiklou.git Query already does ORDER BY value, so remove manual order by from r103759 --- diff --git a/includes/specials/SpecialMostlinkedcategories.php b/includes/specials/SpecialMostlinkedcategories.php index 672462a1de..9cbc936af7 100644 --- a/includes/specials/SpecialMostlinkedcategories.php +++ b/includes/specials/SpecialMostlinkedcategories.php @@ -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' ) ); }