mirror of https://github.com/BOINC/boinc.git
55 lines
1.5 KiB
PHP
55 lines
1.5 KiB
PHP
<?php
|
|
// 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/>.
|
|
|
|
require_once("../inc/boinc_db.inc");
|
|
require_once("../inc/util.inc");
|
|
|
|
$user = get_logged_in_user();
|
|
|
|
$venue = get_venue("venue");
|
|
$hostid = get_int("hostid");
|
|
|
|
$host = BoincHost::lookup_id($hostid);
|
|
if (!$host) {
|
|
error_page("No such host");
|
|
}
|
|
if ($host->userid != $user->id) {
|
|
error_page("Not your host");
|
|
}
|
|
|
|
$retval = $host->update("venue='$venue'");
|
|
if ($retval) {
|
|
page_head("Host venue updated");
|
|
if ($venue == '') {
|
|
$venue = '(none)';
|
|
}
|
|
echo "
|
|
The venue of this host has been set to <b>$venue</b>.
|
|
<p>
|
|
This change will take effect the next time the
|
|
host communicates with this project.
|
|
<p>
|
|
<a href=show_host_detail.php?hostid=$hostid>Return to host page</a>.
|
|
";
|
|
page_tail();
|
|
} else {
|
|
db_error_page();
|
|
}
|
|
|
|
?>
|