diff options
author | lgcosta <lgcosta@pfsense.org> | 2011-02-22 09:25:10 -0300 |
---|---|---|
committer | lgcosta <lgcosta@pfsense.org> | 2011-02-22 09:25:10 -0300 |
commit | 196440c8b881a650eedfbb526cfda41cbecd22c4 (patch) | |
tree | 4c57a752402b5a4104141e7283a2b2e28f8385e4 /usr/local | |
parent | c646776871dacebcaa4225b083aa0789dc0bfba6 (diff) | |
download | pfsense-196440c8b881a650eedfbb526cfda41cbecd22c4.zip pfsense-196440c8b881a650eedfbb526cfda41cbecd22c4.tar.gz |
reversal of accidentally deleted files
Revert "Add Global reply-to disable checkbox, resolves the issue #1137"
This reverts commit c646776871dacebcaa4225b083aa0789dc0bfba6.
Diffstat (limited to 'usr/local')
-rw-r--r-- | usr/local/www/system_advanced_firewall.php | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/usr/local/www/system_advanced_firewall.php b/usr/local/www/system_advanced_firewall.php index d87bb64..38d12c1 100644 --- a/usr/local/www/system_advanced_firewall.php +++ b/usr/local/www/system_advanced_firewall.php @@ -56,7 +56,6 @@ $pconfig['tcpidletimeout'] = $config['filter']['tcpidletimeout']; $pconfig['optimization'] = $config['filter']['optimization']; $pconfig['maximumstates'] = $config['system']['maximumstates']; $pconfig['maximumtableentries'] = $config['system']['maximumtableentries']; -$pconfig['disablereplyto'] = isset($config['system']['disablereplyto']); $pconfig['disablenatreflection'] = $config['system']['disablenatreflection']; if (!isset($config['system']['enablebinatreflection'])) $pconfig['disablebinatreflection'] = "yes"; @@ -125,13 +124,6 @@ if ($_POST) { else $config['system']['enablebinatreflection'] = "yes"; - if($_POST['disablereplyto'] == "yes") { - $config['system']['disablereplyto'] = $_POST['disablereplyto']; - } else { - unset($config['system']['disablereplyto']); - } - - if($_POST['enablenatreflectionhelper'] == "yes") $config['system']['enablenatreflectionhelper'] = "yes"; else @@ -333,18 +325,6 @@ function update_description(itemnum) { </td> </tr> <tr> - <td width="22%" valign="top" class="vncell">Disable reply-to</td> - <td width="78%" class="vtable"> - <input name="disablereplyto" type="checkbox" id="disablereplyto" value="yes" <?php if ($pconfig['disablereplyto']) echo "checked"; ?> /> - <strong><?=gettext("Disable reply-to on WAN rules");?></strong> - <br /> - <?=gettext("With Multi-WAN you generally want to ensure traffic leaves the same interface it arrives on, hence reply-to is added automatically by default." . - "When using bridging, you must disable this behavior if the WAN gateway IP is different from the gateway IP of the hosts behind the bridged interface.");?> - <br /> - </td> - </tr> - - <tr> <td colspan="2" class="list" height="12"> </td> </tr> <?php if(count($config['interfaces']) > 1): ?> |