fix bug when saving netflow filters

This commit is contained in:
alejandro-campos 2020-02-18 11:25:45 +01:00
parent 36fdaf3ff7
commit b9e3c70374
1 changed files with 1 additions and 1 deletions

View File

@ -1015,7 +1015,7 @@ function netflow_get_filter_arguments($filter)
}
if ($filter_args != '') {
$filter_args = escapeshellarg($filter_args);
$filter_args = io_safe_input(escapeshellarg($filter_args));
}
return $filter_args;