Do not insert page titles into querycache.qc_value
[lhc/web/wiklou.git] / includes / specials / SpecialUnusedCategories.php
index 36367d2..f8c9360 100644 (file)
@@ -37,13 +37,16 @@ class SpecialUnusedCategories extends QueryPage {
                return $this->msg( 'unusedcategoriestext' )->parseAsBlock();
        }
 
                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',
        public function getQueryInfo() {
                return [
                        'tables' => [ 'page', 'categorylinks', 'page_props' ],
                        'fields' => [
                                'namespace' => 'page_namespace',
                                'title' => 'page_title',
-                               'value' => 'page_title'
                        ],
                        'conds' => [
                                'cl_from IS NULL',
                        ],
                        'conds' => [
                                'cl_from IS NULL',