Ignore the user and user talk namespaces on Special:Wantedpages
authorRob Church <robchurch@users.mediawiki.org>
Sat, 13 May 2006 16:45:12 +0000 (16:45 +0000)
committerRob Church <robchurch@users.mediawiki.org>
Sat, 13 May 2006 16:45:12 +0000 (16:45 +0000)
RELEASE-NOTES
includes/SpecialWantedpages.php

index 496db75..7feeecf 100644 (file)
@@ -252,6 +252,7 @@ it from source control: http://www.mediawiki.org/wiki/Download_from_SVN
   $wgRateLimitsExcludedGroups
 * (bug 5806) {{plural:}} support instead of "twin" MediaWiki messages
 * (bug 5931) Update for Polish language (pl)
+* Ignore the user and user talk namespaces on Special:Wantedpages
 
 == Compatibility ==
 
index 92958e8..8402bd5 100644 (file)
@@ -49,6 +49,7 @@ class WantedPagesPage extends QueryPage {
                         LEFT JOIN $page AS pg2
                         ON pl_from = pg2.page_id
                         WHERE pg1.page_namespace IS NULL
+                        AND pl_namespace NOT IN ( 2, 3 )
                         AND pg2.page_namespace != 8
                         GROUP BY pl_namespace, pl_title
                         HAVING COUNT(*) > $count";