From: jenkins-bot Date: Fri, 18 Sep 2015 09:16:13 +0000 (+0000) Subject: Merge "Don't check namespace in SpecialWantedtemplates" X-Git-Tag: 1.31.0-rc.0~9973 X-Git-Url: https://git.heureux-cyclage.org/?p=lhc%2Fweb%2Fwiklou.git;a=commitdiff_plain;h=59ebff658ce912c1b0e7ef8d8f9bfec5a4e17b39;hp=647d180cbb3cbf2058b87acbfae4d25df145385b Merge "Don't check namespace in SpecialWantedtemplates" --- diff --git a/includes/specials/SpecialWantedtemplates.php b/includes/specials/SpecialWantedtemplates.php index a4b9dd84fa..9e26f0fa05 100644 --- a/includes/specials/SpecialWantedtemplates.php +++ b/includes/specials/SpecialWantedtemplates.php @@ -44,10 +44,7 @@ class WantedTemplatesPage extends WantedQueryPage { 'title' => 'tl_title', 'value' => 'COUNT(*)' ), - 'conds' => array( - 'page_title IS NULL', - 'tl_namespace' => NS_TEMPLATE - ), + 'conds' => array( 'page_title IS NULL' ), 'options' => array( 'GROUP BY' => array( 'tl_namespace', 'tl_title' ) ), 'join_conds' => array( 'page' => array( 'LEFT JOIN', array( 'page_namespace = tl_namespace',