mirror of
https://github.com/ntop/ntopng.git
synced 2026-05-02 00:40:10 +00:00
Possible fix for usernames containing "." (#9833)
This commit is contained in:
parent
2551141c66
commit
2b8d3b79a7
1 changed files with 1 additions and 1 deletions
|
|
@ -82,7 +82,7 @@ local num = 0
|
|||
for _key, _value in pairsByValues(vals, funct) do
|
||||
local key = _key
|
||||
local value = users_list[_key]
|
||||
local js_key = _key:gsub("%.", "\\\\\\\\.")
|
||||
local js_key = key--_key:gsub("%.", "\\\\\\\\.")
|
||||
local id_key = _key:gsub("%.", "")
|
||||
id_key = id_key:gsub("@", "")
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue