From f71b3c538cd0276eefa56c73c58cc718e310b870 Mon Sep 17 00:00:00 2001 From: Alexandre Emsenhuber Date: Thu, 22 Apr 2010 09:36:18 +0000 Subject: [PATCH] * (bug 23286) Fix for r62890: namespace selector no longer has effect --- includes/specials/SpecialWatchlist.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/includes/specials/SpecialWatchlist.php b/includes/specials/SpecialWatchlist.php index b109b72015..562715f4f8 100644 --- a/includes/specials/SpecialWatchlist.php +++ b/includes/specials/SpecialWatchlist.php @@ -191,6 +191,9 @@ function wfSpecialWatchlist( $par ) { if ( $wgUser->useRCPatrol() && $hidePatrolled ) { $conds[] = 'rc_patrolled != 1'; } + if( $nameSpaceClause ) { + $conds[] = $nameSpaceClause; + } # Toggle watchlist content (all recent edits or just the latest) if( $wgUser->getOption( 'extendwatchlist' )) { -- 2.20.1