summaryrefslogtreecommitdiffstats
path: root/src/usr
diff options
context:
space:
mode:
authorheper <heper@users.noreply.github.com>2015-11-05 18:27:53 +0100
committerStephen Beaver <sbeaver@netgate.com>2015-11-05 15:28:10 -0500
commit7f9a679fa8350d2bc19d323fb39662046128f666 (patch)
treea16e9d0b6abc44c48c2a59039e44420976ac258c /src/usr
parentd6f92b70c0277c8c4e861159eedd46e640162407 (diff)
downloadpfsense-7f9a679fa8350d2bc19d323fb39662046128f666.zip
pfsense-7f9a679fa8350d2bc19d323fb39662046128f666.tar.gz
proposed fix for Bug #5375
value passed by checkbox was "yes" when checked, instead of "Block" / "Pass"
Diffstat (limited to 'src/usr')
-rw-r--r--src/usr/local/www/diag_logs_filter.php7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/usr/local/www/diag_logs_filter.php b/src/usr/local/www/diag_logs_filter.php
index 00c38ba..43d8825 100644
--- a/src/usr/local/www/diag_logs_filter.php
+++ b/src/usr/local/www/diag_logs_filter.php
@@ -121,7 +121,6 @@ if ($filterlogentries_submit) {
$actpass = getGETPOSTsettingvalue('actpass', null);
$actblock = getGETPOSTsettingvalue('actblock', null);
-
$filterfieldsarray['act'] = str_replace(" ", " ", trim($actpass . " " . $actblock));
$filterfieldsarray['act'] = $filterfieldsarray['act'] != "" ? $filterfieldsarray['act'] : 'All';
$filterfieldsarray['time'] = getGETPOSTsettingvalue('filterlogentries_time', null);
@@ -238,7 +237,8 @@ if (!isset($config['syslog']['rawfilter'])) { // Advanced log filter form
'actpass',
'Pass',
'Pass',
- in_arrayi('Pass', $Include_Act)
+ in_arrayi('Pass', $Include_Act),
+ 'Pass'
));
$group->add(new Form_Input(
@@ -277,7 +277,8 @@ if (!isset($config['syslog']['rawfilter'])) { // Advanced log filter form
'actblock',
'Block',
'Block',
- in_arrayi('Block', $Include_Act)
+ in_arrayi('Block', $Include_Act),
+ 'Block'
));
$group->add(new Form_Input(
OpenPOWER on IntegriCloud