summaryrefslogtreecommitdiffstats
path: root/usr/local/www/firewall_nat_edit.php
diff options
context:
space:
mode:
authorScott Ullrich <sullrich@pfsense.org>2007-12-03 23:27:31 +0000
committerScott Ullrich <sullrich@pfsense.org>2007-12-03 23:27:31 +0000
commitce0a5816476bd4703b85a30396123f13da5be174 (patch)
tree034b39c70bb235bcd1c9a2ae3ac4dcf468b22d7c /usr/local/www/firewall_nat_edit.php
parent6af621d3b21406dd7967f9cc7ae3db7c052223ae (diff)
downloadpfsense-ce0a5816476bd4703b85a30396123f13da5be174.zip
pfsense-ce0a5816476bd4703b85a30396123f13da5be174.tar.gz
Do a check on all ID's > -1. When we a dup a rule with id 0 the checks where bypassed. Spotted-by: billm
Diffstat (limited to 'usr/local/www/firewall_nat_edit.php')
-rwxr-xr-xusr/local/www/firewall_nat_edit.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/usr/local/www/firewall_nat_edit.php b/usr/local/www/firewall_nat_edit.php
index 6e111d8..a8f0031 100755
--- a/usr/local/www/firewall_nat_edit.php
+++ b/usr/local/www/firewall_nat_edit.php
@@ -61,7 +61,7 @@ if (isset($id) && $a_nat[$id]) {
$pconfig['interface'] = "wan";
}
-if($id) {
+if($id > -1) {
$if = $a_nat[$id]['interface'];
$security_url = "firewall_nat_edit.php?if=". strtolower($if);
if (!isSystemAdmin($HTTP_SERVER_VARS['AUTH_USER'])) {
OpenPOWER on IntegriCloud