mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
Merge pull request #7779 from open-sausages/pulls/4.0/fix-login-casting
BUG Fix double casting in login authenticator name
This commit is contained in:
commit
7603c6d798
@ -271,7 +271,7 @@ en:
|
||||
ERRORWRONGCRED: 'The provided details don''t seem to be correct. Please try again.'
|
||||
NoPassword: 'There is no password on this member.'
|
||||
SilverStripe\Security\MemberAuthenticator\MemberLoginForm:
|
||||
AUTHENTICATORNAME: 'E-mail & Password'
|
||||
AUTHENTICATORNAME: 'E-mail & Password'
|
||||
SilverStripe\Security\MemberPassword:
|
||||
PLURALNAME: 'Member Passwords'
|
||||
PLURALS:
|
||||
|
@ -224,6 +224,6 @@ class MemberLoginForm extends BaseLoginForm
|
||||
*/
|
||||
public function getAuthenticatorName()
|
||||
{
|
||||
return _t(self::class . '.AUTHENTICATORNAME', "E-mail & Password");
|
||||
return _t(self::class . '.AUTHENTICATORNAME', "E-mail & Password");
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user