Skip to content
Permalink
Browse files Browse the repository at this point in the history
Fix format of displaying user profile title field on "People" page (#…
  • Loading branch information
yurabakhtin committed Jul 6, 2022
1 parent f88991d commit 07d9f8f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion protected/humhub/modules/user/widgets/PeopleFilters.php
Expand Up @@ -102,7 +102,7 @@ private function initProfileFieldFilter(ProfileField $profileField, $sortOrder =
$fieldType = isset($definition[$profileField->internal_name]['type']) ? $definition[$profileField->internal_name]['type'] : null;

$filterData = [
'title' => Yii::t($profileField->getTranslationCategory(), $profileField->title),
'title' => Html::encode(Yii::t($profileField->getTranslationCategory(), $profileField->title)),
'type' => $fieldType,
'sortOrder' => $sortOrder,
];
Expand Down

0 comments on commit 07d9f8f

Please sign in to comment.