mirror of
https://github.com/ntop/ntopng.git
synced 2026-04-29 15:39:33 +00:00
Anomalous -> Misbehaving Flows (fixes #2386)
This commit is contained in:
parent
1610f24958
commit
ca2e11bc0b
2 changed files with 10 additions and 5 deletions
|
|
@ -2154,9 +2154,14 @@ end
|
|||
-- #######################
|
||||
|
||||
function getFlowsTableTitle()
|
||||
local filter_msg = (_GET["application"] or _GET["category"] or _GET["vhost"] or firstToUpper(_GET["flow_status"] or ""))
|
||||
local filter = (_GET["application"] or _GET["category"] or _GET["vhost"] or _GET["flow_status"] or "")
|
||||
local active_msg
|
||||
|
||||
local filter_msg = i18n("flows_page."..filter)
|
||||
if not filter_msg then
|
||||
filter_msg = firstToUpper(filter)
|
||||
end
|
||||
|
||||
if not interface.isPacketInterface() then
|
||||
active_msg = i18n("flows_page.recently_active_flows", {filter=filter_msg})
|
||||
elseif interface.isPcapDumpInterface() then
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue