Index: trunk/phase3/includes/specials/SpecialMovepage.php |
— | — | @@ -277,8 +277,11 @@ |
278 | 278 | ); |
279 | 279 | } |
280 | 280 | |
| 281 | + # Check the watch checkbox in case the watch parameter was given in the |
| 282 | + # request, the preferences say so, or either the old or new title is |
| 283 | + # being watched. |
281 | 284 | $watchChecked = $this->watch || $wgUser->getBoolOption( 'watchmoves' ) |
282 | | - || $this->oldTitle->userIsWatching(); |
| 285 | + || $this->oldTitle->userIsWatching() || $this->newTitle->userIsWatching(); |
283 | 286 | $wgOut->addHTML( " |
284 | 287 | <tr> |
285 | 288 | <td></td> |
Index: trunk/phase3/RELEASE-NOTES |
— | — | @@ -197,6 +197,8 @@ |
198 | 198 | output by omitting some things like quotation marks where HTML 5 allows. |
199 | 199 | * Added crop for inline images. |
200 | 200 | * The description message in $wgExtensionCredits can be an array with parameters |
| 201 | +* (bug 20052) Watch checkbox on Special:Movepage is checked by default when the |
| 202 | + old or new page is being watched. |
201 | 203 | |
202 | 204 | === Bug fixes in 1.16 === |
203 | 205 | |