mirror of
https://github.com/ntop/ntopng.git
synced 2026-04-30 16:09:32 +00:00
Added check
This commit is contained in:
parent
dedea350b8
commit
bbd5470784
1 changed files with 5 additions and 1 deletions
|
|
@ -269,7 +269,11 @@ end
|
|||
-- ##############################################
|
||||
|
||||
function rev(a,b)
|
||||
return (a > b)
|
||||
if((a == nil) or (b == nil)) then
|
||||
return false
|
||||
else
|
||||
return (a > b)
|
||||
end
|
||||
end
|
||||
|
||||
-- ##############################################
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue