mirror of
https://github.com/ntop/ntopng.git
synced 2026-04-29 07:29:32 +00:00
Fix missing mac address link when no manufacturer is available
This commit is contained in:
parent
efc45eeac5
commit
46d1df9d4e
1 changed files with 1 additions and 1 deletions
|
|
@ -2534,7 +2534,7 @@ function get_symbolic_mac(mac_address, only_symbolic)
|
|||
local s = get_mac_classification(m)
|
||||
|
||||
if(m == s) then
|
||||
return(get_mac_classification(m)..":"..t)
|
||||
return '<a href="' .. ntop.getHttpPrefix() .. '/lua/mac_details.lua?host='..mac_address..'">' .. get_mac_classification(m) .. ":" .. t .. '</a>'
|
||||
else
|
||||
if(only_symbolic == true) then
|
||||
return(get_mac_classification(m).."_"..t)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue