From: Alexandre Emsenhuber Date: Thu, 22 Apr 2010 09:36:18 +0000 (+0000) Subject: * (bug 23286) Fix for r62890: namespace selector no longer has effect X-Git-Tag: 1.31.0-rc.0~37037 X-Git-Url: http://git.cyclocoop.org/fichier?a=commitdiff_plain;h=f71b3c538cd0276eefa56c73c58cc718e310b870;p=lhc%2Fweb%2Fwiklou.git * (bug 23286) Fix for r62890: namespace selector no longer has effect --- 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' )) {