summaryrefslogtreecommitdiffstats
path: root/usr
diff options
context:
space:
mode:
authorScott Ullrich <sullrich@pfsense.org>2005-05-01 23:09:36 +0000
committerScott Ullrich <sullrich@pfsense.org>2005-05-01 23:09:36 +0000
commit821a25aab3232475e74d360889ea2589ec8a571a (patch)
tree947dad5802a5dd94ae02ccf3e2a0a7aaf024959d /usr
parent571863f0c1b1b2f03fbd24aba89c90086c84e6e0 (diff)
downloadpfsense-821a25aab3232475e74d360889ea2589ec8a571a.zip
pfsense-821a25aab3232475e74d360889ea2589ec8a571a.tar.gz
Fix missing closing bracket
Diffstat (limited to 'usr')
-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 85cc6ec..8490126 100755
--- a/usr/local/www/firewall_nat_edit.php
+++ b/usr/local/www/firewall_nat_edit.php
@@ -246,7 +246,7 @@ function ext_rep_change() {
foreach ($config['nat']['servernat'] as $sn): ?>
<option value="<?=$sn['ipaddr'];?>" <?php if ($sn['ipaddr'] == $pconfig['extaddr']) echo "selected"; ?>><?=htmlspecialchars("{$sn['ipaddr']} ({$sn['descr']})");?></option>
<?php endforeach; endif; ?>
- <option value="any"<?php if($pconfig['extaddr'] == "any" echo " selected"; ?>></option>
+ <option value="any"<?php if($pconfig['extaddr'] == "any") echo " selected"; ?>></option>
</select><br>
<span class="vexpl">
If you want this rule to apply to another IP address than the IP address of the interface chosen above,
OpenPOWER on IntegriCloud