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', 40, $newTitle->getPrefixedText(), array( 'type' => 'text', 'id' => 'wpNewTitle' ) ) . |
| 188 | + Xml::input( 'wpNewTitle', 60, $newTitle->getPrefixedText(), array( 'type' => 'text', 'id' => 'wpNewTitle' ) ) . |
189 | 189 | Xml::hidden( 'wpOldTitle', $this->oldTitle->getPrefixedText() ) . |
190 | 190 | "</td> |
191 | 191 | </tr> |
— | — | @@ -193,7 +193,8 @@ |
194 | 194 | Xml::label( wfMsg( 'movereason' ), 'wpReason' ) . |
195 | 195 | "</td> |
196 | 196 | <td class='mw-input'>" . |
197 | | - Xml::tags( 'textarea', array( 'name' => 'wpReason', 'id' => 'wpReason', 'cols' => 60, 'rows' => 2 ), htmlspecialchars( $this->reason ) ) . |
| 197 | + Xml::input( 'wpReason', 60, $this->reason, array( 'type' => 'text', |
| 198 | + 'id' => 'wpReason', 'maxlength' => 200 ) ) . |
198 | 199 | "</td> |
199 | 200 | </tr>" |
200 | 201 | ); |
Index: trunk/phase3/RELEASE-NOTES |
— | — | @@ -474,6 +474,7 @@ |
475 | 475 | that STDIN can be used for page list |
476 | 476 | * (bug 16560) Special:Random returns a page from ContentNamespaces, and no |
477 | 477 | longer from NS_MAIN |
| 478 | +* (bug 16921) Add a maxlength for the reason field of the page move form |
478 | 479 | |
479 | 480 | === API changes in 1.14 === |
480 | 481 | |