summaryrefslogtreecommitdiffstats
path: root/usr/local/www/firewall_nat_out_edit.php
diff options
context:
space:
mode:
authorScott Ullrich <sullrich@pfsense.org>2005-09-09 17:47:27 +0000
committerScott Ullrich <sullrich@pfsense.org>2005-09-09 17:47:27 +0000
commit2e56710cc4d4af96740f4c872f9341894226c697 (patch)
tree97c06728e9c76ff791755cbd96f1ffd558f1950b /usr/local/www/firewall_nat_out_edit.php
parentec11a1adce38722253bd1e0487a246d6760d1117 (diff)
downloadpfsense-2e56710cc4d4af96740f4c872f9341894226c697.zip
pfsense-2e56710cc4d4af96740f4c872f9341894226c697.tar.gz
Ticket #467 destination network on firewall_nat_out_edit.php incorrectly parsed.
Submitted-by-someone-who-refuses-to-accept-cvs-account: databeestje
Diffstat (limited to 'usr/local/www/firewall_nat_out_edit.php')
-rwxr-xr-xusr/local/www/firewall_nat_out_edit.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/usr/local/www/firewall_nat_out_edit.php b/usr/local/www/firewall_nat_out_edit.php
index 164297d..9fb5ee8 100755
--- a/usr/local/www/firewall_nat_out_edit.php
+++ b/usr/local/www/firewall_nat_out_edit.php
@@ -159,7 +159,7 @@ if ($_POST) {
if (($natent['interface'] == $_POST['interface']) && ($natent['source']['network'] == $osn)) {
if (isset($natent['destination']['not']) == isset($_POST['destination_not'])) {
if ((isset($natent['destination']['any']) && ($ext == "any")) ||
- ($natent['destination']['network'] == $ext)) {
+ ($natent['destination']['address'] == $ext)) {
$input_errors[] = "There is already an outbound NAT rule with the specified settings.";
break;
}
@@ -178,7 +178,7 @@ if ($_POST) {
if ($ext == "any")
$natent['destination']['any'] = true;
else
- $natent['destination']['network'] = $ext;
+ $natent['destination']['address'] = $ext;
$natent['natport'] = $_POST['natport'];
OpenPOWER on IntegriCloud