2002-08-07 18:56:55 +00:00
|
|
|
<?php
|
2008-08-05 22:43:14 +00:00
|
|
|
// This file is part of BOINC.
|
|
|
|
// http://boinc.berkeley.edu
|
|
|
|
// Copyright (C) 2008 University of California
|
|
|
|
//
|
|
|
|
// BOINC is free software; you can redistribute it and/or modify it
|
|
|
|
// under the terms of the GNU Lesser General Public License
|
|
|
|
// as published by the Free Software Foundation,
|
|
|
|
// either version 3 of the License, or (at your option) any later version.
|
|
|
|
//
|
|
|
|
// BOINC is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
|
|
|
// See the GNU Lesser General Public License for more details.
|
|
|
|
//
|
|
|
|
// You should have received a copy of the GNU Lesser General Public License
|
|
|
|
// along with BOINC. If not, see <http://www.gnu.org/licenses/>.
|
2002-08-07 18:56:55 +00:00
|
|
|
|
2007-11-07 17:23:29 +00:00
|
|
|
require_once("../inc/boinc_db.inc");
|
2004-02-02 23:34:39 +00:00
|
|
|
require_once("../inc/util.inc");
|
|
|
|
require_once("../inc/team.inc");
|
2002-12-04 19:14:00 +00:00
|
|
|
|
2011-02-09 22:11:34 +00:00
|
|
|
check_get_args(array("teamid"));
|
|
|
|
|
2005-02-19 08:06:53 +00:00
|
|
|
$user = get_logged_in_user();
|
2003-03-19 21:01:32 +00:00
|
|
|
|
2005-02-22 19:37:55 +00:00
|
|
|
$teamid = get_int("teamid");
|
2007-11-07 17:23:29 +00:00
|
|
|
$team = BoincTeam::lookup_id($teamid);
|
2010-02-16 01:06:03 +00:00
|
|
|
if (!$team) error_page(tra("no such team"));
|
2007-11-07 17:23:29 +00:00
|
|
|
require_admin($user, $team);
|
2005-02-19 08:06:53 +00:00
|
|
|
|
2009-09-06 05:33:19 +00:00
|
|
|
$team_name = strtr($team->name, '"', "'");
|
2010-02-16 01:06:03 +00:00
|
|
|
page_head(tra("Edit %1", $team_name));
|
|
|
|
team_edit_form($team, tra("Update team info"), "team_edit_action.php");
|
2007-11-07 17:23:29 +00:00
|
|
|
page_tail();
|
2004-11-21 18:56:30 +00:00
|
|
|
|
2002-08-07 18:56:55 +00:00
|
|
|
?>
|