// Format the welcome back message
$formatted_username = <a href="{$mybb->settings['bburl']}/member.php?action=profile&uid={$mybb->user['uid']}">{$mybb->user['username']}</a>, $mybb->user['usergroup'], $mybb->user['displaygroup']);
$lang->welcome_back = $lang->sprintf($lang->welcome_back, $formatted_username, $lastvisit);
That's the code for the usergroup color to show as your username in the welcome back header, the thing is, you won't be able to click your name in the header. What's the code to fix that up?
$formatted_username = <a href="{$mybb->settings['bburl']}/member.php?action=profile&uid={$mybb->user['uid']}">{$mybb->user['username']}</a>, $mybb->user['usergroup'], $mybb->user['displaygroup']);
$lang->welcome_back = $lang->sprintf($lang->welcome_back, $formatted_username, $lastvisit);
That's the code for the usergroup color to show as your username in the welcome back header, the thing is, you won't be able to click your name in the header. What's the code to fix that up?