aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/host.php
diff options
context:
space:
mode:
Diffstat (limited to 'host.php')
-rw-r--r--host.php4
1 files changed, 1 insertions, 3 deletions
diff --git a/host.php b/host.php
index 363e9d5..453cfb4 100644
--- a/host.php
+++ b/host.php
@@ -22,13 +22,11 @@ if(!$plugins) {
22 22
23plugins_list($host, $selected_plugins); 23plugins_list($host, $selected_plugins);
24 24
25$overview = empty($plugin) ? true : false;
26
27echo '<div class="graphs">'; 25echo '<div class="graphs">';
28foreach ($selected_plugins as $selected_plugin) { 26foreach ($selected_plugins as $selected_plugin) {
29 if (in_array($selected_plugin, $plugins)) { 27 if (in_array($selected_plugin, $plugins)) {
30 plugin_header($host, $selected_plugin); 28 plugin_header($host, $selected_plugin);
31 graphs_from_plugin($host, $selected_plugin, $overview); 29 graphs_from_plugin($host, $selected_plugin, empty($plugin));
32 } 30 }
33} 31}
34echo '</div>'; 32echo '</div>';