diff --git a/html/pages/device/port/arp.inc.php b/html/pages/device/port/arp.inc.php index 0149f11eb..a0f2efe43 100644 --- a/html/pages/device/port/arp.inc.php +++ b/html/pages/device/port/arp.inc.php @@ -3,7 +3,7 @@ $sql = "SELECT * FROM ipv4_mac WHERE interface_id = '".$interface['interface_id']."'"; $query = mysql_query($sql); -echo(""); +echo('
'); $i = "1"; while($arp = mysql_fetch_array($query)) { @@ -16,16 +16,16 @@ while($arp = mysql_fetch_array($query)) { if($arp_host['device_id'] == $device['device_id']) { $arp_name = "Localhost"; } if($arp_host['interface_id'] == $arp['interface_id']) { $arp_if = "Local Port"; } - echo(" - - - - + echo(' + + + + - "); + '); $i++; } -echo("
".formatmac($arp['mac_address'])."".$arp['ipv4_address']."$arp_name
'.formatmac($arp['mac_address']).''.$arp['ipv4_address'].''.$arp_name;' $arp_if
"); +echo(''); ?>