From b414824c9c310d8083ba79f04f01555f0d74021a Mon Sep 17 00:00:00 2001 From: Krinkle Date: Thu, 2 Feb 2012 20:46:01 +0000 Subject: [PATCH] [Special:MovePage] fix Title method usage. Need potential subpages included as well. * Follows-up r110209 CR --- includes/specials/SpecialMovepage.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/specials/SpecialMovepage.php b/includes/specials/SpecialMovepage.php index ad45ed8c2b..d1b93e4cf7 100644 --- a/includes/specials/SpecialMovepage.php +++ b/includes/specials/SpecialMovepage.php @@ -267,7 +267,7 @@ class MovePageForm extends UnlistedSpecialPage { array( 'selected' => $newTitle->getNamespace() ), array( 'name' => 'wpNewTitleNs', 'id' => 'wpNewTitleNs' ) ) . - Xml::input( 'wpNewTitleMain', 60, $wgContLang->recodeForEdit( $newTitle->getBaseText() ), array( + Xml::input( 'wpNewTitleMain', 60, $wgContLang->recodeForEdit( $newTitle->getText() ), array( 'type' => 'text', 'id' => 'wpNewTitleMain', 'maxlength' => 255, -- 2.20.1