diff options
author | Chris Buechler <cmb@pfsense.org> | 2015-04-30 01:23:11 -0500 |
---|---|---|
committer | Chris Buechler <cmb@pfsense.org> | 2015-04-30 01:23:11 -0500 |
commit | ee72e2caed14c107f0dcc083d8dd199feba5c2bb (patch) | |
tree | 60bdf8ba1fe10233e2da82df3b36b349a1ce09a4 /usr | |
parent | cf3aff59edfa4b101d69ddd694a59fdc580d2299 (diff) | |
download | pfsense-ee72e2caed14c107f0dcc083d8dd199feba5c2bb.zip pfsense-ee72e2caed14c107f0dcc083d8dd199feba5c2bb.tar.gz |
Show correct selection for noshuntlan option. Ticket #4655
Diffstat (limited to 'usr')
-rw-r--r-- | usr/local/www/vpn_ipsec_settings.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usr/local/www/vpn_ipsec_settings.php b/usr/local/www/vpn_ipsec_settings.php index 87f5fcb..023d202 100644 --- a/usr/local/www/vpn_ipsec_settings.php +++ b/usr/local/www/vpn_ipsec_settings.php @@ -376,7 +376,7 @@ function maxmss_checked(obj) { <tr> <td width="22%" valign="top" class="vncell"><?=gettext("Auto-exclude LAN address"); ?></td> <td width="78%" class="vtable"> - <input name="noshuntlaninterfaces" type="checkbox" id="noshuntlaninterfaces" value="yes" <?php if ($pconfig['noshuntlaninterfaces'] == true) echo "checked=\"checked\""; ?> /> + <input name="noshuntlaninterfaces" type="checkbox" id="noshuntlaninterfaces" value="yes" <?php if ($pconfig['noshuntlaninterfaces'] != true) echo "checked=\"checked\""; ?> /> <strong><?=gettext("Enable bypass for LAN interface IP"); ?></strong> <br /> <?=gettext("Exclude traffic from LAN subnet to LAN IP address from IPsec."); ?> |