aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/host.php
diff options
context:
space:
mode:
authorPim van den Berg2013-05-20 22:51:44 +0200
committerPim van den Berg2013-06-22 12:16:28 +0200
commit51cd1c4dbdd684dd9a2d487770b6f28d67a25ccc (patch)
treeafead94366494bfad9dcd3193475564cc3ff117f /host.php
parentplugin/nut: collectd 5 compatibility for frequency graph (diff)
downloadapt-panopticon_cgp-51cd1c4dbdd684dd9a2d487770b6f28d67a25ccc.zip
apt-panopticon_cgp-51cd1c4dbdd684dd9a2d487770b6f28d67a25ccc.tar.gz
apt-panopticon_cgp-51cd1c4dbdd684dd9a2d487770b6f28d67a25ccc.tar.bz2
apt-panopticon_cgp-51cd1c4dbdd684dd9a2d487770b6f28d67a25ccc.tar.xz
start using fieldset + legend for showing data
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