aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/host.php
diff options
context:
space:
mode:
Diffstat (limited to 'host.php')
-rw-r--r--host.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/host.php b/host.php
index f98ca99..3bf3698 100644
--- a/host.php
+++ b/host.php
@@ -21,7 +21,7 @@ if(!$plugins) {
21# first the ones defined in overview 21# first the ones defined in overview
22foreach($CONFIG['overview'] as $plugin) { 22foreach($CONFIG['overview'] as $plugin) {
23 if (in_array($plugin, $plugins)) { 23 if (in_array($plugin, $plugins)) {
24 printf("<h3>[-] %s</h3>\n", $plugin); 24 printf("<h3><img src=\"%s/layout/minus.gif\" alt=\"[-]\"> %s</h3>\n", $CONFIG['weburl'], $plugin);
25 graphs_from_plugin($host, $plugin); 25 graphs_from_plugin($host, $plugin);
26 } 26 }
27} 27}
@@ -31,10 +31,10 @@ foreach($plugins as $plugin) {
31 if (!in_array($plugin, $CONFIG['overview'])) { 31 if (!in_array($plugin, $CONFIG['overview'])) {
32 $url = sprintf('<a href="%s/host.php?h=%s&p=%s">%s</a>'."\n", $CONFIG['weburl'], $host, $plugin, $plugin); 32 $url = sprintf('<a href="%s/host.php?h=%s&p=%s">%s</a>'."\n", $CONFIG['weburl'], $host, $plugin, $plugin);
33 if ($splugin == $plugin) { 33 if ($splugin == $plugin) {
34 printf("<h3>[-] %s</h3>\n", $url); 34 printf("<h3><img src=\"%s/layout/minus.gif\" alt=\"[-]\"> %s</h3>\n", $CONFIG['weburl'], $url);
35 graphs_from_plugin($host, $plugin); 35 graphs_from_plugin($host, $plugin);
36 } else { 36 } else {
37 printf("<h3>[+] %s</h3>\n", $url); 37 printf("<h3><img src=\"%s/layout/plus.gif\" alt=\"[+]\"> %s</h3>\n", $CONFIG['weburl'], $url);
38 } 38 }
39 } 39 }
40} 40}