diff --git a/lang/en.yml b/lang/en.yml index 4f6d57926..ef6596a01 100644 --- a/lang/en.yml +++ b/lang/en.yml @@ -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: diff --git a/src/Security/MemberAuthenticator/MemberLoginForm.php b/src/Security/MemberAuthenticator/MemberLoginForm.php index e7380710c..e3d345e28 100644 --- a/src/Security/MemberAuthenticator/MemberLoginForm.php +++ b/src/Security/MemberAuthenticator/MemberLoginForm.php @@ -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"); } }