Index: trunk/phase3/includes/specials/SpecialMovepage.php |
— | — | @@ -184,7 +184,7 @@ |
185 | 185 | Xml::label( wfMsg( 'newtitle' ), 'wpNewTitle' ) . |
186 | 186 | "</td> |
187 | 187 | <td class='mw-input'>" . |
188 | | - Xml::input( 'wpNewTitle', 60, $newTitle->getPrefixedText(), array( 'type' => 'text', 'id' => 'wpNewTitle' ) ) . |
| 188 | + Xml::input( 'wpNewTitle', 40, $newTitle->getPrefixedText(), array( 'type' => 'text', 'id' => 'wpNewTitle' ) ) . |
189 | 189 | Xml::hidden( 'wpOldTitle', $this->oldTitle->getPrefixedText() ) . |
190 | 190 | "</td> |
191 | 191 | </tr> |
— | — | @@ -193,8 +193,7 @@ |
194 | 194 | Xml::label( wfMsg( 'movereason' ), 'wpReason' ) . |
195 | 195 | "</td> |
196 | 196 | <td class='mw-input'>" . |
197 | | - Xml::input( 'wpReason', 60, $this->reason, array( 'type' => 'text', |
198 | | - 'id' => 'wpReason', 'maxlength' => 200 ) ) . |
| 197 | + Xml::tags( 'textarea', array( 'name' => 'wpReason', 'id' => 'wpReason', 'cols' => 60, 'rows' => 2 ), htmlspecialchars( $this->reason ) ) . |
199 | 198 | "</td> |
200 | 199 | </tr>" |
201 | 200 | ); |
Index: trunk/phase3/RELEASE-NOTES |
— | — | @@ -32,7 +32,6 @@ |
33 | 33 | |
34 | 34 | === Bug fixes in 1.15 === |
35 | 35 | |
36 | | -* (bug 16921) Add a maxlength for the reason field of the page move form |
37 | 36 | |
38 | 37 | === Languages updated in 1.15 === |
39 | 38 | |