Index: trunk/phase3/RELEASE-NOTES-1.19 |
— | — | @@ -61,7 +61,6 @@ |
62 | 62 | used in Tiff files. |
63 | 63 | * When translcuding a special page, do not let it interpret url parameters. |
64 | 64 | * (bug 28887) Special page classes are no longer re-used during 1 request. |
65 | | -* New title field of Special:MovePage is now length limited on client side. |
66 | 65 | * (bug 28888) Searching for something starting with a # sign no longer tells |
67 | 66 | the user a page named [[:]] already exists. |
68 | 67 | * (bug 23002) Imagelinks table not updated after imagemove. |
Index: trunk/phase3/includes/specials/SpecialMovepage.php |
— | — | @@ -229,8 +229,7 @@ |
230 | 230 | Xml::label( wfMsg( 'newtitle' ), 'wpNewTitle' ) . |
231 | 231 | "</td> |
232 | 232 | <td class='mw-input'>" . |
233 | | - Xml::input( 'wpNewTitle', 40, $wgContLang->recodeForEdit( $newTitle->getPrefixedText() ), array( 'type' => 'text', 'id' => 'wpNewTitle', 'maxlength' => 255 ) ) . |
234 | | - // maxLength enforced in JS. |
| 233 | + Xml::input( 'wpNewTitle', 40, $wgContLang->recodeForEdit( $newTitle->getPrefixedText() ), array( 'type' => 'text', 'id' => 'wpNewTitle' ) ) . |
235 | 234 | Html::hidden( 'wpOldTitle', $this->oldTitle->getPrefixedText() ) . |
236 | 235 | "</td> |
237 | 236 | </tr> |
Index: trunk/phase3/resources/mediawiki.special/mediawiki.special.movePage.js |
— | — | @@ -2,5 +2,4 @@ |
3 | 3 | |
4 | 4 | jQuery( function( $ ) { |
5 | 5 | $( '#wpReason' ).byteLimit(); |
6 | | - $( '#wpNewTitle' ).byteLimit(); |
7 | 6 | }); |