Index: trunk/phase3/includes/SpecialPreferences.php |
— | — | @@ -558,7 +558,7 @@ |
559 | 559 | $skin = $wgUser->getSkin(); |
560 | 560 | $emailauthenticated = wfMsg('emailnotauthenticated').'<br />' . |
561 | 561 | $skin->makeKnownLinkObj( SpecialPage::getTitleFor( 'Confirmemail' ), |
562 | | - wfMsg( 'emailconfirmlink' ) ); |
| 562 | + wfMsg( 'emailconfirmlink' ) ) . '<br />'; |
563 | 563 | } |
564 | 564 | } else { |
565 | 565 | $emailauthenticated = ''; |
— | — | @@ -566,7 +566,7 @@ |
567 | 567 | } |
568 | 568 | |
569 | 569 | if ($this->mUserEmail == '') { |
570 | | - $emailauthenticated = wfMsg( 'noemailprefs' ); |
| 570 | + $emailauthenticated = wfMsg( 'noemailprefs' ) . '<br />'; |
571 | 571 | } |
572 | 572 | |
573 | 573 | $ps = $this->namespacesCheckboxes(); |
Index: trunk/phase3/RELEASE-NOTES |
— | — | @@ -362,6 +362,9 @@ |
363 | 363 | * (bug 10765) img_auth.php will now refuse logged-out requests where |
364 | 364 | $wgWhitelistRead is undefined, instead of (incorrectly) honouring them |
365 | 365 | * Fixed img_auth.php file name extraction for whitelist checking |
| 366 | +* Fixed a display problem in the E-mail part of the preferences page when |
| 367 | + the E-mail is not confirmed: the notice about it was in the same line as |
| 368 | + a preference. |
366 | 369 | |
367 | 370 | == API changes since 1.10 == |
368 | 371 | |