From 52fe6aae5e41ede519ab18e8fa736ef7099bef82 Mon Sep 17 00:00:00 2001 From: Tom Laermans Date: Tue, 20 Sep 2011 16:09:54 +0000 Subject: [PATCH] make graphs next to device name on overview go to the larger graph when clicked git-svn-id: http://www.observium.org/svn/observer/trunk@2527 61d68cd4-352d-0410-923a-c4978735b2b8 --- html/includes/functions.inc.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/html/includes/functions.inc.php b/html/includes/functions.inc.php index 045712786..7613515b1 100644 --- a/html/includes/functions.inc.php +++ b/html/includes/functions.inc.php @@ -205,6 +205,8 @@ function generate_graph_popup($graph_array) $graph_array['from'] = $config['time']['year']; $content .= generate_graph_tag($graph_array); $content .= ""; + + $graph_array['link'] = "graphs/type=" . $graph_array['type'] . "/id=" . $graph_array['id']; return overlib_link($graph_array['link'], $graph, $content, NULL); }