When adding a redirect for FTP alert the user that it really creates 2 firewall rules

Ticket #899
This commit is contained in:
Scott Ullrich 2006-04-04 21:18:19 +00:00
parent 801d50beb8
commit 514dbaf8f0
2 changed files with 18 additions and 2 deletions

View File

@ -38,6 +38,10 @@ if (!is_array($config['nat']['rule']))
$a_nat = &$config['nat']['rule'];
/* if a custom message has been passed along, lets process it */
if ($_GET['savemsg'])
$savemsg = $_GET['savemsg'];
if ($_POST) {
$pconfig = $_POST;
@ -138,9 +142,13 @@ include("head.inc");
<form action="firewall_nat.php" method="post" name="iform">
<script type="text/javascript" language="javascript" src="row_toggle.js">
</script>
<?php if ($savemsg) print_info_box($savemsg); ?>
<?php if (file_exists($d_natconfdirty_path)): ?><p>
<?php print_info_box_np("The NAT configuration has been changed.<br>You must apply the changes in order for them to take effect.");?>
<?php
if($savemsg)
print_info_box_np("{$savemsg}<br>The NAT configuration has been changed.<br>You must apply the changes in order for them to take effect.");
else
print_info_box_np("The NAT configuration has been changed.<br>You must apply the changes in order for them to take effect.");
?>
<?php endif; ?>
<table width="100%" border="0" cellpadding="0" cellspacing="0">
<tr><td>

View File

@ -222,6 +222,14 @@ if ($_POST) {
$config['filter']['rule'][] = $filterent;
touch($d_filterconfdirty_path);
write_config();
header("Location: firewall_nat.php?savemsg=The%20changes%20have%20been%20saved.%20%20Please%20note%20that%20we%20have%20added%20an%20additional%20rule%20for%20the%20FTP%20helper.");
exit;
}
touch($d_filterconfdirty_path);