X-Git-Url: https://git.cyclocoop.org/?a=blobdiff_plain;f=includes%2Fspecials%2FSpecialUnusedcategories.php;h=429a3b03bb4256b530231799c59299994dba9a51;hb=4d8248ff97278627902974bd1726c6a3c0a70f50;hp=ec39ccf0c91c89bfa768c4c5e2b8bc56589fa57e;hpb=ce079cf6ad79ca8d3360817f809b219d166f9153;p=lhc%2Fweb%2Fwiklou.git diff --git a/includes/specials/SpecialUnusedcategories.php b/includes/specials/SpecialUnusedcategories.php index ec39ccf0c9..429a3b03bb 100644 --- a/includes/specials/SpecialUnusedcategories.php +++ b/includes/specials/SpecialUnusedcategories.php @@ -37,13 +37,16 @@ class UnusedCategoriesPage extends QueryPage { return $this->msg( 'unusedcategoriestext' )->parseAsBlock(); } + function getOrderFields() { + return [ 'title' ]; + } + public function getQueryInfo() { return [ 'tables' => [ 'page', 'categorylinks' ], 'fields' => [ 'namespace' => 'page_namespace', 'title' => 'page_title', - 'value' => 'page_title' ], 'conds' => [ 'cl_from IS NULL', @@ -55,7 +58,7 @@ class UnusedCategoriesPage extends QueryPage { } /** - * A should come before Z (bug 30907) + * A should come before Z (T32907) * @return bool */ function sortDescending() {