Index: trunk/phase3/includes/specials/SpecialWatchlist.php |
— | — | @@ -81,7 +81,7 @@ |
82 | 82 | $invert = $wgRequest->getIntOrNull( 'invert' ); |
83 | 83 | if( !is_null( $nameSpace ) ) { |
84 | 84 | $nameSpace = intval( $nameSpace ); |
85 | | - if( $invert && $nameSpace != 'all' ) |
| 85 | + if( $invert && $nameSpace !== 'all' ) |
86 | 86 | $nameSpaceClause = " AND rc_namespace != $nameSpace"; |
87 | 87 | else |
88 | 88 | $nameSpaceClause = " AND rc_namespace = $nameSpace"; |
Index: trunk/phase3/RELEASE-NOTES |
— | — | @@ -151,6 +151,8 @@ |
152 | 152 | * (bug 15303) Title conversion for templates wasn't working in some cases. |
153 | 153 | * (bug 15264) Underscores in Special:Search/Foo_bar parameters were taken |
154 | 154 | literally; now converting them to spaces per expectation. |
| 155 | +* (bug 15342) "Invert" checkbox now works correctly when selecting main |
| 156 | + namespace in Special:Watchlist |
155 | 157 | |
156 | 158 | |
157 | 159 | === API changes in 1.14 === |