My client is using quotes in the first name field within CB to add a nick name.
On the member login, the welcome message is showing - hi, " first name "
it appears it's improperly escaped or not rendered correctly in Community Builder
Replaced: $greetingText = $cbUser->replaceUserVars( CBTxt::T( 'Hi, [formatname]' ) );
with this below to temp fix:
$greetingText = htmlspecialchars_decode($cbUser->replaceUserVars( CBTxt::T( 'Hi, [formatname]' )), ENT_QUOTES);
Might want to add this to future releases.
Thanks