aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/host.php
diff options
context:
space:
mode:
Diffstat (limited to 'host.php')
-rw-r--r--host.php5
1 files changed, 4 insertions, 1 deletions
diff --git a/host.php b/host.php
index 453cfb4..34cc03c 100644
--- a/host.php
+++ b/host.php
@@ -11,7 +11,9 @@ $selected_plugins = !$plugin ? $CONFIG['overview'] : array($plugin);
11 11
12html_start(); 12html_start();
13 13
14printf('<h2>%s</h2>'."\n", $host); 14printf("<fieldset id=\"%s\"/>", $host);
15printf("<legend>%s</legend>", $host);
16
15 17
16$plugins = collectd_plugins($host); 18$plugins = collectd_plugins($host);
17 19
@@ -30,6 +32,7 @@ foreach ($selected_plugins as $selected_plugin) {
30 } 32 }
31} 33}
32echo '</div>'; 34echo '</div>';
35printf("</fieldset>");
33 36
34html_end(); 37html_end();
35 38