diff --git a/html/includes/print-vlan.inc.php b/html/includes/print-vlan.inc.php
index a61957584..676177c2c 100644
--- a/html/includes/print-vlan.inc.php
+++ b/html/includes/print-vlan.inc.php
@@ -10,6 +10,7 @@ echo("
");
foreach (dbFetchRows("SELECT * FROM ports WHERE `device_id` = ? AND `ifVlan` = ?", array($device['device_id'], $vlan['vlan_vlan'])) as $port)
{
+ $port = ifLabel($port, $device);
if ($vars['view'] == "graphs")
{
echo("
@@ -26,7 +27,7 @@ foreach (dbFetchRows("SELECT * FROM ports WHERE `device_id` = ? AND `ifVlan` = ?
}
else
{
- echo($vlan['port_sep'] . generate_port_link($port, makeshortif(ifnamedescr($port))));
+ echo($vlan['port_sep'] . generate_port_link($port, makeshortif($port['label']));
$vlan['port_sep'] = ", ";
}
}
diff --git a/html/pages/device/overview/c6kxbar.inc.php b/html/pages/device/overview/c6kxbar.inc.php
index fff882aa4..c95bd6233 100644
--- a/html/pages/device/overview/c6kxbar.inc.php
+++ b/html/pages/device/overview/c6kxbar.inc.php
@@ -52,6 +52,8 @@ foreach($entity_state['group']['c6kxbar'] as $index => $entry)
unset($link_array['height'], $link_array['width'], $link_array['legend']);
$link = generate_url($link_array);
+ $text_descr = $entity['entPhysicalName'] . " - Fabric " . $subindex;
+
$overlib_content = generate_overlib_content($graph_array, $device['hostname'] . " - " . $text_descr);
$graph_array['width'] = 80; $graph_array['height'] = 20; $graph_array['bg'] = $graph_colour;
|