summaryrefslogtreecommitdiffstats
path: root/src/usr/local/www/firewall_rules_edit.php
diff options
context:
space:
mode:
authorStephen Beaver <sbeaver@netgate.com>2015-11-30 08:29:26 -0500
committerStephen Beaver <sbeaver@netgate.com>2015-11-30 08:30:00 -0500
commit66066eda36fedf4df73bf03c6603ea76f9813327 (patch)
tree59064604cfc81c182ce441ccf5bc8e044a297e43 /src/usr/local/www/firewall_rules_edit.php
parentec27c3aadaf77e1f20d1a114a5aa1e1f692d974d (diff)
downloadpfsense-66066eda36fedf4df73bf03c6603ea76f9813327.zip
pfsense-66066eda36fedf4df73bf03c6603ea76f9813327.tar.gz
Fixed #5532
Diffstat (limited to 'src/usr/local/www/firewall_rules_edit.php')
-rw-r--r--src/usr/local/www/firewall_rules_edit.php12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/usr/local/www/firewall_rules_edit.php b/src/usr/local/www/firewall_rules_edit.php
index 42ad217..c18d27c 100644
--- a/src/usr/local/www/firewall_rules_edit.php
+++ b/src/usr/local/www/firewall_rules_edit.php
@@ -1590,23 +1590,23 @@ $group = new Form_Group('In / Out pipe');
$group->add(new Form_Select(
'dnpipe',
'DNpipe',
- $pconfig['dnpipe'],
- array('' => 'none') + array_keys($dnqlist)
+ (isset($pconfig['dnpipe'])) ? $pconfig['dnpipe']:"",
+ array('' => 'none') + array_combine(array_keys($dnqlist), array_keys($dnqlist))
));
$group->add(new Form_Select(
'pdnpipe',
'PDNpipe',
- $pconfig['pdnpipe'],
- array('' => 'none') + array_keys($dnqlist)
+ (isset($pconfig['pdnpipe'])) ? $pconfig['pdnpipe']:"",
+ array('' => 'none') + array_combine(array_keys($dnqlist), array_keys($dnqlist))
));
$section->add($group)->setHelp('Choose the Out queue/Virtual interface only if '.
'you have also selected In. The Out selection is applied to traffic leaving '.
- 'the interface where the rule is created, In is applied to traffic coming '.
+ 'the interface where the rule is created, It is applied to traffic coming '.
'into the chosen interface.<br />If you are creating a floating rule, if the '.
'direction is In then the same rules apply, if the direction is out the '.
- 'selections are reverted Out is for incoming and In is for outgoing.'
+ 'selections are reversed Out is for incoming and In is for outgoing.'
);
$group = new Form_Group('Ackqueue / Queue');
OpenPOWER on IntegriCloud