aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/detail.php
diff options
context:
space:
mode:
Diffstat (limited to 'detail.php')
-rw-r--r--detail.php12
1 files changed, 6 insertions, 6 deletions
diff --git a/detail.php b/detail.php
index 777294b..b4ece36 100644
--- a/detail.php
+++ b/detail.php
@@ -15,12 +15,12 @@ if (empty($_GET['y']))
15if ($CONFIG['graph_type'] == 'hybrid') 15if ($CONFIG['graph_type'] == 'hybrid')
16 $CONFIG['graph_type'] = 'canvas'; 16 $CONFIG['graph_type'] = 'canvas';
17 17
18$host = validate_get(GET('h'), 'host'); 18$host = validate_get(GET('h'), 'h');
19$plugin = validate_get(GET('p'), 'plugin'); 19$plugin = validate_get(GET('p'), 'p');
20$pinstance = validate_get(GET('pi'), 'pinstance'); 20$pinstance = validate_get(GET('pi'), 'pi');
21$category = validate_get(GET('c'), 'category'); 21$category = validate_get(GET('c'), 'c');
22$type = validate_get(GET('t'), 'type'); 22$type = validate_get(GET('t'), 't');
23$tinstance = validate_get(GET('ti'), 'tinstance'); 23$tinstance = validate_get(GET('ti'), 'ti');
24$seconds = GET('s'); 24$seconds = GET('s');
25 25
26$selected_plugins = !$plugin ? $CONFIG['overview'] : array($plugin); 26$selected_plugins = !$plugin ? $CONFIG['overview'] : array($plugin);