mirror of
https://github.com/ntop/ntopng.git
synced 2026-04-29 23:49:33 +00:00
Fix string concatenation
This commit is contained in:
parent
b5934b802d
commit
48aee7d88f
1 changed files with 1 additions and 1 deletions
|
|
@ -1878,7 +1878,7 @@ function historical_flow_utils.getHistoricalFlowLabel(record, add_hyperlinks, ad
|
|||
end
|
||||
|
||||
if info.cli_country and not isEmptyString(info.cli_country.value) then
|
||||
label = label .. ' <img src="' + ntop.getHttpPrefix() + '/dist/images/blank.gif" class="flag flag-' + string.lower(info.cli_country.value) + '">'
|
||||
label = label .. ' <img src="' .. ntop.getHttpPrefix() .. '/dist/images/blank.gif" class="flag flag-' .. string.lower(info.cli_country.value) .. '">'
|
||||
end
|
||||
|
||||
if add_hyperlinks and info.cli_location and not isEmptyString(info.cli_location.label) then
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue