summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPhil Davis <phil.davis@inf.org>2014-09-16 21:56:51 +0545
committerPhil Davis <phil.davis@inf.org>2014-09-16 21:56:51 +0545
commit9036e7661e3e97944f8d329cc6fb24b8206a7326 (patch)
treef5a5b4f00cd937a66376a355f7239e4ebfda996a
parent929dfb4cb9388ba550f29700f17134508f8f866d (diff)
downloadpfsense-9036e7661e3e97944f8d329cc6fb24b8206a7326.zip
pfsense-9036e7661e3e97944f8d329cc6fb24b8206a7326.tar.gz
Fix #3866 Firewall Log Filtering
on 2.1 branch
-rw-r--r--etc/inc/filter_log.inc2
1 files changed, 1 insertions, 1 deletions
diff --git a/etc/inc/filter_log.inc b/etc/inc/filter_log.inc
index 4b1ba7a..7284604 100644
--- a/etc/inc/filter_log.inc
+++ b/etc/inc/filter_log.inc
@@ -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)))
OpenPOWER on IntegriCloud