Force a space between password label and reset link.

userlogin-yourpassword and userlogin-resetpassword-link
appeared concatenated if the css wasn't available:
"PasswordReset your password"

Change-Id: I59049a3f1f912c45da89b1441661c3b725e1459b
This commit is contained in:
Platonides 2013-08-21 14:34:47 +02:00
parent 90b0ef0098
commit a18d9856f7

View file

@ -94,7 +94,7 @@ class UserloginTemplate extends BaseTemplate {
$this->msg( 'userlogin-yourpassword' );
if ( $this->data['useemail'] && $this->data['canreset'] && $this->data['resetlink'] === true ) {
echo Linker::link(
echo " ", Linker::link(
SpecialPage::getTitleFor( 'PasswordReset' ),
$this->getMsg( 'userlogin-resetpassword-link' )->parse(),
array( 'class' => 'mw-ui-flush-right' )