diff --git a/includes/view/User_view.php b/includes/view/User_view.php
index c6422187..06661e2f 100644
--- a/includes/view/User_view.php
+++ b/includes/view/User_view.php
@@ -580,13 +580,11 @@ function User_view(
return page_with_title(
' '
- . (
- (config('enable_pronoun') && $user_source->personalData->pronoun)
- ? '' . htmlspecialchars($user_source->personalData->pronoun) . ' '
- : ''
- )
. htmlspecialchars($user_source->name)
. (config('enable_user_name') ? ' ' . $user_name . '' : '')
+ . ((config('enable_pronoun') && $user_source->personalData->pronoun)
+ ? ' (' . htmlspecialchars($user_source->personalData->pronoun) . ') '
+ : '')
. user_info_icon($user_source),
[
msg(),