. require_once("../inc/boinc_db.inc"); require_once("../inc/util.inc"); require_once("../inc/host.inc"); check_get_args(array("hostid", "ttok", "tnow")); $user = get_logged_in_user(); check_tokens($user->authenticator); $hostid = get_int("hostid"); $host = BoincHost::lookup_id($hostid); if (!$host || $host->userid != $user->id) { error_page(tra("We have no record of that computer.")); } $nresults = host_nresults($host); if ($nresults == 0) { $host->delete(); } else { error_page(tra("You can not delete our record of this computer because our database still contains work for it. You must wait a few days until the work for this computer has been deleted from the project database.")); } page_head(tra("Delete record of computer")); echo tra("Record deleted.")."
".tra("Return to list of your computers")." "; page_tail(); ?>