From: Kunal Mehta Date: Wed, 28 Sep 2016 09:17:49 +0000 (-0700) Subject: Fix display of categories X-Git-Tag: 1.31.0-rc.0~5294 X-Git-Url: http://git.cyclocoop.org/data/Fool?a=commitdiff_plain;h=8e5d90f13f5c6810cdc52df5f227c9ab0a20bd09;p=lhc%2Fweb%2Fwiklou.git Fix display of categories Fixes regression from 1885a1ac462c08, which accidentally removed page_namespace and page_title as select fields. Bug: T146873 Change-Id: I19cff0cf5bc015da7311196749a9201a8e458b49 --- diff --git a/includes/CategoryViewer.php b/includes/CategoryViewer.php index 53e855bdb0..c858dd7164 100644 --- a/includes/CategoryViewer.php +++ b/includes/CategoryViewer.php @@ -321,6 +321,8 @@ class CategoryViewer extends ContextSource { array_merge( LinkCache::getSelectFields(), [ + 'page_namespace', + 'page_title', 'cl_sortkey', 'cat_id', 'cat_title',