$bbuserinfo is built by the fetch_userinfo function in the file functions.php.
Search for this in /includes/functions.php and you'll find it
PHP Code:
// ###################### Start getuserinfo #######################
// set $option to load other relevant information
function fetch_userinfo(&$userid, $option = 0)
By default this is called in sessions.php, at this line:
PHP Code:
// handle some stuff for registered users
if (empty($bbuserinfo))
{
$useroptions = 0 + iif(defined('IN_CONTROL_PANEL'), 16, 0) + iif(defined('AVATAR_ON_NAVBAR'), 2, 0);
$bbuserinfo = fetch_userinfo($session['userid'], $useroptions);
}