diff options
author | jim-p <jimp@pfsense.org> | 2011-05-16 16:47:47 -0400 |
---|---|---|
committer | jim-p <jimp@pfsense.org> | 2011-05-16 16:47:47 -0400 |
commit | 1a137650652a9148ef292777299f2d4f81d66eab (patch) | |
tree | ae6bb37cc0c0054f9af342dbd3f3d5bf5ef3e41b /usr | |
parent | 701989fbe44f22fc7ea1848ac7c14f361178e5c2 (diff) | |
download | pfsense-1a137650652a9148ef292777299f2d4f81d66eab.zip pfsense-1a137650652a9148ef292777299f2d4f81d66eab.tar.gz |
Fixup MAC display on this other path too
Diffstat (limited to 'usr')
-rwxr-xr-x | usr/local/www/status_dhcp_leases.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usr/local/www/status_dhcp_leases.php b/usr/local/www/status_dhcp_leases.php index f84f7b3..ba18b72 100755 --- a/usr/local/www/status_dhcp_leases.php +++ b/usr/local/www/status_dhcp_leases.php @@ -369,7 +369,7 @@ foreach ($leases as $data) { } }else{ if(isset($mac_man[$mac_hi])){ // Manufacturer for this MAC is defined - echo "<td class=\"listr\">{$fspans}<span title=\"$mac\">{$mac_man[$mac_hi]}</span>{$fspane} </td>\n"; + echo "<td class=\"listr\">{$fspans}{$mac}<br/><font size=\"-2\"><i>{$mac_man[$mac_hi]}</i></font>{$fspane} </td>\n"; }else{ echo "<td class=\"listr\">{$fspans}{$data['mac']}{$fspane} </td>\n"; } |