From 21d4553a025e981ae9112a01d117e1b4b495d300 Mon Sep 17 00:00:00 2001 From: Alexandre Emsenhuber Date: Wed, 22 Dec 2010 15:29:29 +0000 Subject: [PATCH] We need to select the namespace, even hardcoded, this is causing: Notice: Undefined property: stdClass::$namespace in includes/QueryPage.php on line 307 --- includes/specials/SpecialMostlinkedcategories.php | 1 + 1 file changed, 1 insertion(+) diff --git a/includes/specials/SpecialMostlinkedcategories.php b/includes/specials/SpecialMostlinkedcategories.php index 75ecd93d61..f491a70282 100644 --- a/includes/specials/SpecialMostlinkedcategories.php +++ b/includes/specials/SpecialMostlinkedcategories.php @@ -42,6 +42,7 @@ class MostlinkedCategoriesPage extends QueryPage { return array ( 'tables' => array ( 'categorylinks' ), 'fields' => array ( 'cl_to AS title', + NS_CATEGORY . ' AS namespace', 'COUNT(*) AS value' ), 'options' => array ( 'GROUP BY' => 'cl_to' ) ); -- 2.20.1