2004-05-30 21:47:11 +00:00
|
|
|
<?php
|
|
|
|
require_once("../inc/db.inc");
|
|
|
|
require_once("../inc/util.inc");
|
|
|
|
require_once("../inc/host.inc");
|
|
|
|
|
|
|
|
function fail($msg) {
|
|
|
|
echo "Error: $msg";
|
|
|
|
page_tail();
|
|
|
|
exit();
|
|
|
|
}
|
|
|
|
|
|
|
|
function get_host($hostid, $user) {
|
|
|
|
$host = lookup_host($hostid);
|
|
|
|
if (!$host || $host->userid != $user->id) {
|
|
|
|
fail("We have no record of that computer");
|
|
|
|
}
|
|
|
|
return $host;
|
|
|
|
}
|
|
|
|
|
|
|
|
db_init();
|
|
|
|
$user = get_logged_in_user();
|
|
|
|
|
|
|
|
page_head("Updating computer credit");
|
|
|
|
|
|
|
|
$hostid = $_GET["hostid"];
|
2004-06-01 18:55:59 +00:00
|
|
|
host_update_credit($hostid);
|
2004-05-31 00:50:06 +00:00
|
|
|
echo "<br>Host credit updated";
|
2004-05-30 21:47:11 +00:00
|
|
|
page_tail();
|
|
|
|
|
|
|
|
?>
|