aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/detail.php
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--detail.php9
1 files changed, 6 insertions, 3 deletions
diff --git a/detail.php b/detail.php
index 9cfeb53..c7df632 100644
--- a/detail.php
+++ b/detail.php
@@ -17,8 +17,6 @@ $pinstance = validate_get(GET('pi'), 'pinstance');
17$category = validate_get(GET('c'), 'category'); 17$category = validate_get(GET('c'), 'category');
18$type = validate_get(GET('t'), 'type'); 18$type = validate_get(GET('t'), 'type');
19$tinstance = validate_get(GET('ti'), 'tinstance'); 19$tinstance = validate_get(GET('ti'), 'tinstance');
20$width = GET('x');
21$heigth = GET('y');
22$seconds = GET('s'); 20$seconds = GET('s');
23 21
24$selected_plugins = !$plugin ? $CONFIG['overview'] : array($plugin); 22$selected_plugins = !$plugin ? $CONFIG['overview'] : array($plugin);
@@ -49,7 +47,12 @@ foreach($CONFIG['term'] as $key => $s) {
49} 47}
50print "</ul>\n"; 48print "</ul>\n";
51 49
52printf('<img src="%s%s">'."\n", $CONFIG['weburl'], build_url('graph.php', $_GET)); 50if ($CONFIG['graph_type'] == 'canvas') {
51 chdir($CONFIG['webdir']);
52 include $CONFIG['webdir'].'/plugin/'.$plugin.'.php';
53} else {
54 printf('<img src="%s%s">'."\n", $CONFIG['weburl'], build_url('graph.php', $_GET));
55}
53echo '</div>'; 56echo '</div>';
54 57
55html_end(); 58html_end();