Fix #3866 Firewall Log Filtering

on 2.1 branch
This commit is contained in:
Phil Davis 2014-09-16 21:56:51 +05:45
parent 929dfb4cb9
commit 9036e7661e
1 changed files with 1 additions and 1 deletions

View File

@ -93,7 +93,7 @@ function match_filter_field($flent, $fields) {
foreach ($fields as $key => $field) {
if ($field == "All")
continue;
if ((strpos($$field, '!') === 0)) {
if ((strpos($field, '!') === 0)) {
$field = substr($field, 1);
if (strtolower($key) == 'act') {
if (in_arrayi($flent[$key], explode(" ", $field)))