X-Git-Url: https://git.heureux-cyclage.org/?p=lhc%2Fweb%2Fwiklou.git;a=blobdiff_plain;f=includes%2Fspecials%2FSpecialUnusedCategories.php;h=f8c9360acf7dda54908e4f320ea95acac8530161;hp=36367d2f277d49142fd2bf17d1059b87a57d4151;hb=9c7f6734c397a954b8eaa5ec73876f2b4bf92afb;hpb=5a296a1113d1243962c6459281a0307dd3efb80f diff --git a/includes/specials/SpecialUnusedCategories.php b/includes/specials/SpecialUnusedCategories.php index 36367d2f27..f8c9360acf 100644 --- a/includes/specials/SpecialUnusedCategories.php +++ b/includes/specials/SpecialUnusedCategories.php @@ -37,13 +37,16 @@ class SpecialUnusedCategories extends QueryPage { return $this->msg( 'unusedcategoriestext' )->parseAsBlock(); } + function getOrderFields() { + return [ 'title' ]; + } + public function getQueryInfo() { return [ 'tables' => [ 'page', 'categorylinks', 'page_props' ], 'fields' => [ 'namespace' => 'page_namespace', 'title' => 'page_title', - 'value' => 'page_title' ], 'conds' => [ 'cl_from IS NULL',