From 8aeef736870fd77836340898fefaaf78f4864a43 Mon Sep 17 00:00:00 2001 From: Rob Moen Date: Wed, 9 Nov 2011 22:08:38 +0000 Subject: [PATCH] essage=This bug fixes bug30483 --- includes/specials/SpecialMovepage.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/includes/specials/SpecialMovepage.php b/includes/specials/SpecialMovepage.php index 98c169e538..db23168966 100644 --- a/includes/specials/SpecialMovepage.php +++ b/includes/specials/SpecialMovepage.php @@ -195,7 +195,7 @@ class MovePageForm extends UnlistedSpecialPage { $token = htmlspecialchars( $user->editToken() ); if ( !empty($err) ) { - $out->addSubtitle( $this->msg( 'formerror' ) ); + $out->setSubtitle( wfMsg( 'formerror' ) ); if( $err[0] == 'hookaborted' ) { $hookErr = $err[1]; $errMsg = "

$hookErr

\n"; @@ -239,7 +239,7 @@ class MovePageForm extends UnlistedSpecialPage { Xml::label( wfMsg( 'newtitle' ), 'wpNewTitle' ) . " " . - Xml::input( 'wpNewTitle', 40, $wgContLang->recodeForEdit( $newTitle->getPrefixedText() ), array( 'type' => 'text', 'id' => 'wpNewTitle' ) ) . + Xml::input( 'wpNewTitle', 60, $wgContLang->recodeForEdit( $newTitle->getPrefixedText() ), array( 'type' => 'text', 'id' => 'wpNewTitle' ) ) . Html::hidden( 'wpOldTitle', $this->oldTitle->getPrefixedText() ) . " -- 2.20.1