Index: trunk/phase3/includes/SpecialWatchlist.php |
— | — | @@ -50,7 +50,7 @@ |
51 | 51 | $wgOut->addHTML( '<p>' ); |
52 | 52 | foreach($id as $one) { |
53 | 53 | $t = Title::newFromURL( $one ); |
54 | | - if($t->getDBkey() != '') { |
| 54 | + if( !is_null( $t ) ) { |
55 | 55 | $wl = WatchedItem::fromUserTitle( $wgUser, $t ); |
56 | 56 | if( $wl->removeWatch() === false ) { |
57 | 57 | $wgOut->addHTML( "<br />\n" . wfMsg( 'couldntremove', htmlspecialchars($one) ) ); |
Index: trunk/phase3/RELEASE-NOTES |
— | — | @@ -235,6 +235,8 @@ |
236 | 236 | * (bug 2275) Update search index more or less right on page move |
237 | 237 | * (bug 2053) Move comment whitespace trimming from edit page to save; |
238 | 238 | leaves the whitespace from the section comment there on preview. |
| 239 | +* (bug 2274) Respect stub threshold in category page list |
| 240 | +* (bug 2173) Fatal error when removing an article with an empty title from the watchlist |
239 | 241 | |
240 | 242 | |
241 | 243 | === Caveats === |