From 2e37b187b261841ca13e68c34a196eaa93a4e6f9 Mon Sep 17 00:00:00 2001 From: Arjit Chaudhary Date: Thu, 1 Oct 2015 18:02:42 +0530 Subject: [PATCH] Set background for minigraph to white as we've removed it from styles.css --- html/includes/functions.inc.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/html/includes/functions.inc.php b/html/includes/functions.inc.php index 67d062b4c2..2a1ca4dd6a 100644 --- a/html/includes/functions.inc.php +++ b/html/includes/functions.inc.php @@ -222,7 +222,7 @@ function generate_device_link($device, $text=null, $vars=array(), $start=0, $end $url = generate_device_url($device, $vars); // beginning of overlib box contains large hostname followed by hardware & OS details - $contents = '
'.$device['hostname'].''; + $contents = '
'.$device['hostname'].''; if ($device['hardware']) { $contents .= ' - '.$device['hardware']; } @@ -248,7 +248,7 @@ function generate_device_link($device, $text=null, $vars=array(), $start=0, $end foreach ($graphs as $entry) { $graph = $entry['graph']; $graphhead = $entry['text']; - $contents .= '
'; + $contents .= '
'; $contents .= ''.$graphhead.'
'; $contents .= generate_minigraph_image($device, $start, $end, $graph); $contents .= generate_minigraph_image($device, $config['time']['week'], $end, $graph);