From ad446656174111a2f04cc4354311a02fe3e9cc35 Mon Sep 17 00:00:00 2001 From: Bryan Tong Minh Date: Tue, 11 Aug 2009 20:46:28 +0000 Subject: [PATCH] Revert r54795: Didn't work as expected and don't have time to fix. --- RELEASE-NOTES | 2 -- includes/specials/SpecialMovepage.php | 5 +---- 2 files changed, 1 insertion(+), 6 deletions(-) diff --git a/RELEASE-NOTES b/RELEASE-NOTES index 365c98e2a6..c397571002 100644 --- a/RELEASE-NOTES +++ b/RELEASE-NOTES @@ -197,8 +197,6 @@ this. Was used when mwEmbed was going to be an extension. output by omitting some things like quotation marks where HTML 5 allows. * Added crop for inline images. * The description message in $wgExtensionCredits can be an array with parameters -* (bug 20052) Watch checkbox on Special:Movepage is checked by default when the - old or new page is being watched. === Bug fixes in 1.16 === diff --git a/includes/specials/SpecialMovepage.php b/includes/specials/SpecialMovepage.php index f583d1a5bb..70b15948f1 100644 --- a/includes/specials/SpecialMovepage.php +++ b/includes/specials/SpecialMovepage.php @@ -277,11 +277,8 @@ class MovePageForm { ); } - # Check the watch checkbox in case the watch parameter was given in the - # request, the preferences say so, or either the old or new title is - # being watched. $watchChecked = $this->watch || $wgUser->getBoolOption( 'watchmoves' ) - || $this->oldTitle->userIsWatching() || $this->newTitle->userIsWatching(); + || $this->oldTitle->userIsWatching(); $wgOut->addHTML( " -- 2.20.1