Skip to content

Commit

Permalink
Fixed #16358
Browse files Browse the repository at this point in the history
  • Loading branch information
brandonkelly committed Dec 28, 2024
1 parent 064dfd3 commit ce8c341
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 0 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
- Fixed a bug where new entries’ slugs weren’t getting propagated to other sites, if their entry type had a dynamic title format. ([#16347](https://github.com/craftcms/cms/issues/16347))
- Fixed a bug where address cards were only showing the first two lines of the address. ([#16353](https://github.com/craftcms/cms/issues/16353))
- Fixed a bug where `@transform` GraphQL directives weren’t always working on Assets fields with overridden handles. ([#15718](https://github.com/craftcms/cms/issues/15718))
- Fixed an error that occurred when adding “Full Name” to user cards. ([#16358](https://github.com/craftcms/cms/issues/16358))
- Fixed an RCE vulnerability.

## 5.5.7 - 2024-12-17
Expand Down
4 changes: 4 additions & 0 deletions src/elements/User.php
Original file line number Diff line number Diff line change
Expand Up @@ -519,6 +519,10 @@ protected static function defineCardAttributes(): array
'label' => Craft::t('app', 'Last Name'),
'placeholder' => Craft::t('app', 'Last Name'),
],
'fullName' => [
'label' => Craft::t('app', 'Full Name'),
'placeholder' => Craft::t('app', 'Full Name'),
],
'groups' => [
'label' => Craft::t('app', 'Groups'),
'placeholder' => Craft::t('app', 'Group Name'),
Expand Down

0 comments on commit ce8c341

Please sign in to comment.