summaryrefslogtreecommitdiffstats
path: root/usr/local/www/firewall_nat_1to1_edit.php
diff options
context:
space:
mode:
authorErik Fonnesbeck <efonnes@gmail.com>2010-03-10 19:26:08 -0700
committerErik Fonnesbeck <efonnes@gmail.com>2010-03-10 19:31:56 -0700
commit0e3aa71cd00836a3621ca68cb7e060b0d07e1327 (patch)
tree7651ebd517f34634dbfff6a25c2886792e9f2204 /usr/local/www/firewall_nat_1to1_edit.php
parenteb20f3c51e41cb65885589bbb229860ed069f78f (diff)
downloadpfsense-0e3aa71cd00836a3621ca68cb7e060b0d07e1327.zip
pfsense-0e3aa71cd00836a3621ca68cb7e060b0d07e1327.tar.gz
Fix sorting issues that were introduced in an old commit, resulting in the incorrect item sometimes being shown when clicking edit buttons.
Diffstat (limited to 'usr/local/www/firewall_nat_1to1_edit.php')
-rwxr-xr-xusr/local/www/firewall_nat_1to1_edit.php3
1 files changed, 1 insertions, 2 deletions
diff --git a/usr/local/www/firewall_nat_1to1_edit.php b/usr/local/www/firewall_nat_1to1_edit.php
index c4452d2..62c4c33 100755
--- a/usr/local/www/firewall_nat_1to1_edit.php
+++ b/usr/local/www/firewall_nat_1to1_edit.php
@@ -60,7 +60,6 @@ require("shaper.inc");
if (!is_array($config['nat']['onetoone'])) {
$config['nat']['onetoone'] = array();
}
-nat_1to1_rules_sort();
$a_1to1 = &$config['nat']['onetoone'];
$id = $_GET['id'];
@@ -141,11 +140,11 @@ if ($_POST) {
$natent['descr'] = $_POST['descr'];
$natent['interface'] = $_POST['interface'];
- nat_1to1_rules_sort();
if (isset($id) && $a_1to1[$id])
$a_1to1[$id] = $natent;
else
$a_1to1[] = $natent;
+ nat_1to1_rules_sort();
mark_subsystem_dirty('natconf');
OpenPOWER on IntegriCloud