mirror of https://github.com/BOINC/boinc.git
25 lines
595 B
PHP
25 lines
595 B
PHP
<?php
|
|
require_once("../inc/db.inc");
|
|
require_once("../inc/util.inc");
|
|
require_once("../inc/user.inc");
|
|
require_once("../inc/host.inc");
|
|
|
|
db_init();
|
|
$hostid = $_GET["hostid"];
|
|
$ipprivate = $_GET["ipprivate"];
|
|
$host = lookup_host($hostid);
|
|
if (!$host) {
|
|
echo "Couldn't find computer";
|
|
exit();
|
|
}
|
|
$private = false;
|
|
$user = get_logged_in_user(false);
|
|
if ($user && $user->id == $host->userid) {
|
|
$private = true;
|
|
}
|
|
|
|
page_head("Computer summary", $user);
|
|
show_host($host, $private, $ipprivate);
|
|
page_tail();
|
|
?>
|