mirror of https://github.com/BOINC/boinc.git
23 lines
652 B
PHP
23 lines
652 B
PHP
<?php
|
|
require_once("../inc/db.inc");
|
|
require_once("../inc/util.inc");
|
|
require_once("../inc/team.inc");
|
|
|
|
db_init();
|
|
$user = get_logged_in_user();
|
|
$teamid = $_POST["id"];
|
|
$team = lookup_team($teamid);
|
|
if ($user->teamid == $team->id) {
|
|
mysql_query("update user set teamid=0 where id=$user->id");
|
|
team_update_nusers($team);
|
|
page_head("Quit $team->name");
|
|
echo "You have been removed from <a href=team_display.php?teamid=$team->id>$team->name</a>";
|
|
} else {
|
|
page_head("Unable to quit team");
|
|
echo "Team doesn't exist, or you don't belong to it.\n";
|
|
}
|
|
|
|
page_tail();
|
|
|
|
?>
|