From a18d9856f752604d1d842d9662e9e126551c6cc9 Mon Sep 17 00:00:00 2001 From: Platonides Date: Wed, 21 Aug 2013 14:34:47 +0200 Subject: [PATCH] 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 --- includes/templates/Userlogin.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/templates/Userlogin.php b/includes/templates/Userlogin.php index f41f4035d2..46a0235db0 100644 --- a/includes/templates/Userlogin.php +++ b/includes/templates/Userlogin.php @@ -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' ) -- 2.20.1