userid != $user->id || $teamid != $user->teamid) {
$show_email = false;
}
echo "
";
$result = mysql_query("select * from user where teamid=$team->id");
while ($user = mysql_fetch_object($result)) {
show_team_member($user, $show_email);
}
echo "
";
exit();
}
db_init();
$user = get_logged_in_user();
$teamid = get_int("teamid");
$plain = get_int("plain", true);
if ($user->teamid == $teamid) {
$team = lookup_team($teamid);
require_founder_login($user, $team);
if ($plain) {
header("Content-type: text/plain");
} else {
page_head("$team->name Email List");
start_table();
row1("Member list of $team->name");
row2_plain("Name", "Email address");
}
$result = mysql_query("select * from user where teamid=$team->id");
while ($user = mysql_fetch_object($result)) {
if ($plain) {
echo "$user->name <$user->email_addr>\n";
} else {
row2_plain($user->name, $user->email_addr);
}
}
if (!$plain) {
mysql_free_result($result);
end_table();
echo "
Show as plain text";
page_tail();
}
} else {
error_page("You need to be the member and the founder of the team to edit team information.");
}
?>