From 85245f18028a2f87ef81ef2590af9705c126b138 Mon Sep 17 00:00:00 2001 From: David Anderson Date: Wed, 26 Jun 2013 16:23:50 -0700 Subject: [PATCH] web: show host product name to owner --- html/inc/host.inc | 3 +++ 1 file changed, 3 insertions(+) diff --git a/html/inc/host.inc b/html/inc/host.inc index 44d4a68f6c..064005d37f 100644 --- a/html/inc/host.inc +++ b/html/inc/host.inc @@ -117,6 +117,9 @@ function show_host($host, $user, $ipprivate) { row2(tra("Coprocessors"), gpu_desc($host->serialnum)); } row2(tra("Operating System"), "$host->os_name
$host->os_version"); + if ($user && $host->product_name) { + row2(tra("Product name"), $host->product_name); + } $v = boinc_version($host->serialnum); if ($v) { row2(tra("BOINC version"), $v);