2002-08-07 18:56:55 +00:00
|
|
|
<?php
|
|
|
|
|
2007-10-29 16:38:25 +00:00
|
|
|
require_once("../inc/boinc_db.inc");
|
2006-01-13 01:07:05 +00:00
|
|
|
require_once("../inc/util.inc");
|
|
|
|
require_once("../inc/team.inc");
|
2002-08-07 18:56:55 +00:00
|
|
|
|
2006-01-13 01:07:05 +00:00
|
|
|
$user = get_logged_in_user();
|
|
|
|
|
2007-07-25 03:17:31 +00:00
|
|
|
$name = post_str("name");
|
2006-01-13 01:07:05 +00:00
|
|
|
if (strlen($name) == 0) {
|
2007-07-25 03:17:31 +00:00
|
|
|
error_page("You must choose a non-blank team name");
|
2006-02-01 20:19:51 +00:00
|
|
|
}
|
|
|
|
|
2007-07-25 03:17:31 +00:00
|
|
|
$new_team = lookup_team_name($name);
|
|
|
|
if ($new_team) {
|
|
|
|
error_page("A team named '$name' already exists - try another name");
|
2006-02-01 20:19:51 +00:00
|
|
|
}
|
|
|
|
|
2007-07-25 03:17:31 +00:00
|
|
|
$url = post_str("url", true);
|
|
|
|
$type = post_str("type", true);
|
|
|
|
$name_html = post_str("name_html", true);
|
|
|
|
$description = post_str("description", true);
|
|
|
|
$country = post_str("country", true);
|
2007-08-26 10:29:08 +00:00
|
|
|
if ($country == "") {
|
|
|
|
$country = "International";
|
|
|
|
}
|
2007-07-25 03:17:31 +00:00
|
|
|
|
|
|
|
$new_team = make_team(
|
|
|
|
$user->id, $name, $url, $type, $name_html, $description, $country
|
2006-01-13 01:07:05 +00:00
|
|
|
);
|
|
|
|
|
2007-07-25 03:17:31 +00:00
|
|
|
if ($new_team) {
|
2006-01-13 01:07:05 +00:00
|
|
|
user_join_team($new_team, $user);
|
2007-07-25 03:17:31 +00:00
|
|
|
Header("Location: team_display.php?teamid=$new_team->id");
|
2006-01-13 01:07:05 +00:00
|
|
|
} else {
|
2007-07-25 03:17:31 +00:00
|
|
|
error_page("Could not create team - please try later.");
|
2006-01-13 01:07:05 +00:00
|
|
|
}
|
2003-01-03 21:55:05 +00:00
|
|
|
|
2002-08-07 18:56:55 +00:00
|
|
|
?>
|