diff options
author | NewEraCracker <neweracracker@gmail.com> | 2016-01-14 09:08:39 +0000 |
---|---|---|
committer | NewEraCracker <neweracracker@gmail.com> | 2016-01-14 09:08:39 +0000 |
commit | 5242ec2420fa05e1dd26261eddb7fa9857171f7e (patch) | |
tree | b5238b1a59ffe9d22d2e3961a9aa5db8727843fe /src/usr/local/www | |
parent | cd656b85255feee8313e6081325f05db7a6c2642 (diff) | |
download | pfsense-5242ec2420fa05e1dd26261eddb7fa9857171f7e.zip pfsense-5242ec2420fa05e1dd26261eddb7fa9857171f7e.tar.gz |
Fix misplaced parentheses
Diffstat (limited to 'src/usr/local/www')
-rw-r--r-- | src/usr/local/www/firewall_nat_1to1_edit.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/usr/local/www/firewall_nat_1to1_edit.php b/src/usr/local/www/firewall_nat_1to1_edit.php index bdc00b9..4d5c865 100644 --- a/src/usr/local/www/firewall_nat_1to1_edit.php +++ b/src/usr/local/www/firewall_nat_1to1_edit.php @@ -373,7 +373,7 @@ function dsttype_selected() { $sel = is_specialnet($pconfig['dst']); - if (empty($pconfig['dst'] || $pconfig['dst'] == "any")) { + if (empty($pconfig['dst']) || $pconfig['dst'] == "any") { return('any'); } |