Anomalous -> Misbehaving Flows (fixes #2386)

This commit is contained in:
Alfredo Cardigliano 2019-03-26 19:36:40 +01:00
parent 1610f24958
commit ca2e11bc0b
2 changed files with 10 additions and 5 deletions

View file

@ -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