Index: trunk/phase3/includes/templates/Userlogin.php |
— | — | @@ -157,12 +157,13 @@ |
158 | 158 | <td class="mw-label"><label for='wpName2'><?php $this->msg('yourname') ?></label></td> |
159 | 159 | <td class="mw-input"> |
160 | 160 | <?php |
161 | | - echo Html::input( 'wpName', $this->data['name'], 'text', array( |
| 161 | + echo Html::input( 'wpName', null, 'text', array( |
162 | 162 | 'class' => 'loginText', |
163 | 163 | 'id' => 'wpName2', |
164 | 164 | 'tabindex' => '1', |
165 | 165 | 'size' => '20', |
166 | | - 'required' |
| 166 | + 'required', |
| 167 | + 'autofocus' |
167 | 168 | ) ); ?> |
168 | 169 | </td> |
169 | 170 | </tr> |
Index: trunk/phase3/RELEASE-NOTES |
— | — | @@ -419,6 +419,8 @@ |
420 | 420 | are now normalized to ordinary spaces in titles; if your wiki has existing |
421 | 421 | titles with such characters, run cleanupTitles.php and/or cleanupImages.php |
422 | 422 | * (bug 20296) Fixed an PHP warning in Language::getMagic() in PHP 5.3 |
| 423 | +* When creating accounts, don't prefill name from current username (which |
| 424 | + presumably is already taken) |
423 | 425 | |
424 | 426 | == API changes in 1.16 == |
425 | 427 | |