Index: trunk/phase3/includes/Preferences.php |
— | — | @@ -311,13 +311,14 @@ |
312 | 312 | $time = $wgLang->timeAndDate( $user->getEmailAuthenticationTimestamp(), true ); |
313 | 313 | $d = $wgLang->date( $user->getEmailAuthenticationTimestamp(), true ); |
314 | 314 | $t = $wgLang->time( $user->getEmailAuthenticationTimestamp(), true ); |
315 | | - $emailauthenticated = htmlspecialchars( wfMsg( 'emailauthenticated', $time, $d, $t ) ) . '<br />'; |
| 315 | + $emailauthenticated = wfMsgExt( 'emailauthenticated', 'parseinline', |
| 316 | + array($time, $d, $t ) ) . '<br />'; |
316 | 317 | $disableEmailPrefs = false; |
317 | 318 | } else { |
318 | 319 | $disableEmailPrefs = true; |
319 | 320 | global $wgUser; // wgUser is okay here, it's for display |
320 | 321 | $skin = $wgUser->getSkin(); |
321 | | - $emailauthenticated = wfMsgHtml( 'emailnotauthenticated' ) . '<br />' . |
| 322 | + $emailauthenticated = wfMsgExt( 'emailnotauthenticated', 'parseinline' ) . '<br />' . |
322 | 323 | $skin->link( |
323 | 324 | SpecialPage::getTitleFor( 'Confirmemail' ), |
324 | 325 | wfMsg( 'emailconfirmlink' ), |