*** empty log message ***

svn path=/trunk/boinc/; revision=2958
This commit is contained in:
David Anderson 2004-02-04 22:26:45 +00:00
parent b2bf1bfc9f
commit e8c3db3869
1 changed files with 16 additions and 0 deletions

16
html/ops/clear_host.php Normal file
View File

@ -0,0 +1,16 @@
<?php
require_once("../inc/db.inc");
db_init();
$hostid = $_GET["hostid"];
if (!$hostid) {
echo "no host ID\n";
exit();
}
mysql_query("update host set rpc_time=0 where id=$hostid");
echo "Host RPC time cleared\n";
?>