From: Platonides Date: Wed, 21 Aug 2013 12:34:47 +0000 (+0200) Subject: Force a space between password label and reset link. X-Git-Tag: 1.31.0-rc.0~18919 X-Git-Url: https://git.cyclocoop.org/%27.%24link.%27?a=commitdiff_plain;h=a18d9856f752604d1d842d9662e9e126551c6cc9;p=lhc%2Fweb%2Fwiklou.git 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 --- 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' )