From 82d88098f4203cf7402d4faf5ad100cada70efaf Mon Sep 17 00:00:00 2001 From: Pim van den Berg Date: Tue, 11 Nov 2014 23:01:15 +0100 Subject: make detail page accessible when using "canvas" graph_type Closes #106 --- inc/html.inc.php | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'inc/html.inc.php') diff --git a/inc/html.inc.php b/inc/html.inc.php index 161af73..bc22ba3 100644 --- a/inc/html.inc.php +++ b/inc/html.inc.php @@ -338,7 +338,15 @@ function graphs_from_plugin($host, $plugin, $overview=false) { isset($items['t']) ? $_GET['t'] = $items['t'] : $_GET['t'] = ''; isset($items['ti']) ? $_GET['ti'] = $items['ti'] : $_GET['ti'] = ''; $_GET['s'] = $time; + $uuid = generate_uuid(); + printf('', $uuid); include $CONFIG['webdir'].'/graph.php'; + print ''; + printf('graph'."\n", + htmlentities($CONFIG['weburl']), + htmlentities(build_url('detail.php', $items, $time)), + $uuid + ); } else { printf(''."\n", htmlentities($CONFIG['weburl']), -- cgit v1.1