fix fabric graph overlib descr and vlan output

git-svn-id: http://www.observium.org/svn/observer/trunk@2734 61d68cd4-352d-0410-923a-c4978735b2b8
This commit is contained in:
Adam Amstrong
2011-11-23 12:53:24 +00:00
parent 69a849c3f0
commit 2237a6ff62
2 changed files with 4 additions and 1 deletions

View File

@ -10,6 +10,7 @@ echo("<td class=list-bold>");
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("<div style='display: block; padding: 2px; margin: 2px; min-width: 139px; max-width:139px; min-height:85px; max-height:85px; text-align: center; float: left; background-color: ".$list_colour_b_b.";'>
@ -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'] = ", ";
}
}