diff --git a/html/user/db.inc b/html/user/db.inc
index a3e9c0095c..0be7dbd02b 100644
--- a/html/user/db.inc
+++ b/html/user/db.inc
@@ -62,6 +62,8 @@ function show_app_version($app_version) {
function show_host($host) {
echo TABLE2."\n";
+ echo "
Below is information on all the hosts you have running the BOINC core client.";
+ echo "";
echo "
".TD2.LG_FONT."Host Information:
\n";
row("IP address: ", "$host->last_ip_addr
(same the last $host->nsame_ip_addr times)");
row("Domain name: ", $host->domain_name);
@@ -72,19 +74,19 @@ function show_host($host) {
row("Number of CPUs: ", $host->p_ncpus);
row("Operating System: ", "$host->os_name $host->os_version");
$x = $host->m_nbytes/(1024*1024);
- $y = round($x, 3);
+ $y = round($x, 2);
row("Memory: ", "$y MB");
$x = $host->m_cache/1024;
- $y = round($x);
+ $y = round($x, 2);
row("Cache: ", "$y KB");
$x = $host->m_swap/(1024*1024);
- $y = round($x);
+ $y = round($x, 2);
row("Swap Space: ", "$y MB");
$x = $host->d_total/(1024*1024*1024);
- $y = round($x);
+ $y = round($x, 2);
row("Total Disk Space: ", "$y GB");
$x = $host->d_free/(1024*1024*1024);
- $y = round($x);
+ $y = round($x, 2);
row("Free Disk Space: ", "$y GB");
row("Avg network bandwidth:
(upstream) ", "$host->n_bwup bytes/sec");
row("Avg network bandwidth:
(downstream) ", "$host->n_bwdown bytes/sec");
diff --git a/html/user/team.inc b/html/user/team.inc
index dc8750300c..525e072d08 100644
--- a/html/user/team.inc
+++ b/html/user/team.inc
@@ -87,7 +87,7 @@ if (strlen($team->description)) {
row("Description: ", $team->description);
}
if (strlen($team->url)) {;
- row("Web site: ", "url>click here");
+ row("Web site: ", "url>http://$team->url");
}
row("Members: ", $team->nusers);