authenticator); $teamid = get_int("teamid"); $team = BoincTeam::lookup_id($teamid); require_team($team); if ($user->teamid == $team->id) { page_head("Already a member"); echo "You are already a member of $team->name."; } else { $success = user_join_team($team, $user); if ($success) { Header("Location: home.php"); } else { error_page("Couldn't join team - please try later."); } } page_tail(); ?>