mirror of
https://github.com/ntop/ntopng.git
synced 2026-05-01 00:19:33 +00:00
Fix flows_stats page title
This commit is contained in:
parent
9ea7ff01b8
commit
60566f4b53
1 changed files with 7 additions and 2 deletions
|
|
@ -1734,9 +1734,14 @@ end
|
|||
|
||||
function getFlowsTableTitle()
|
||||
local status_type
|
||||
|
||||
if _GET["flow_status"] then
|
||||
status_type = flow_consts.getStatusTitle(_GET["flow_status"])
|
||||
local flow_status_id = tonumber(_GET["flow_status"])
|
||||
|
||||
if(flow_status_id ~= nil) then
|
||||
status_type = flow_consts.getStatusTitle(_GET["flow_status"])
|
||||
else
|
||||
status_type = _GET["flow_status"]
|
||||
end
|
||||
end
|
||||
|
||||
local filter = (_GET["application"] or _GET["category"] or _GET["vhost"] or status_type or "")
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue