FIX Capitalisation fixes in welcome back message (#9439)

This commit is contained in:
Robbie Averill 2020-03-22 19:54:30 -07:00 committed by GitHub
parent 88660e6435
commit 5002f514b3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 4 additions and 4 deletions

View File

@ -54,7 +54,7 @@ Returns the currently logged in [Member](api:SilverStripe\Security\Member) insta
```ss
<% if $CurrentMember %>
Welcome Back, $CurrentMember.FirstName
Welcome back, $CurrentMember.FirstName
<% end_if %>
```

View File

@ -44,7 +44,7 @@ class HomePageTest extends FunctionalTest
$page = $this->get('home/');
$this->assertExactHTMLMatchBySelector("#Welcome", [
'Welcome Back'
'Welcome back'
]);
}
}

View File

@ -276,7 +276,7 @@ en:
SURNAME: Surname
VALIDATIONADMINLOSTACCESS: 'Cannot remove all admin groups from your profile'
ValidationIdentifierFailed: 'Can''t overwrite existing member #{id} with identical identifier ({name} = {value}))'
WELCOMEBACK: 'Welcome Back, {firstname}'
WELCOMEBACK: 'Welcome back, {firstname}'
YOUROLDPASSWORD: 'Your old password'
belongs_many_many_Groups: Groups
db_Locale: 'Interface Locale'

View File

@ -201,7 +201,7 @@ class LoginHandler extends RequestHandler
// Welcome message
$message = _t(
'SilverStripe\\Security\\Member.WELCOMEBACK',
'Welcome Back, {firstname}',
'Welcome back, {firstname}',
['firstname' => $member->FirstName]
);
Security::singleton()->setSessionMessage($message, ValidationResult::TYPE_GOOD);