diff options
author | Scott Ullrich <sullrich@pfsense.org> | 2005-07-24 22:15:41 +0000 |
---|---|---|
committer | Scott Ullrich <sullrich@pfsense.org> | 2005-07-24 22:15:41 +0000 |
commit | a985eac214014664e2fe8a590378558cb5efcfa0 (patch) | |
tree | d61f50e2ceb622426c7ce7a4b7e86069b1e24170 /usr/local | |
parent | 9a7e416ce3607f2575163e38df1a24731ab48ab1 (diff) | |
download | pfsense-a985eac214014664e2fe8a590378558cb5efcfa0.zip pfsense-a985eac214014664e2fe8a590378558cb5efcfa0.tar.gz |
Unlink dirty marker
Diffstat (limited to 'usr/local')
-rwxr-xr-x | usr/local/www/firewall_rules.php | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/usr/local/www/firewall_rules.php b/usr/local/www/firewall_rules.php index 3591c91..fd0593d 100755 --- a/usr/local/www/firewall_rules.php +++ b/usr/local/www/firewall_rules.php @@ -65,6 +65,9 @@ if ($_POST) { $retval = filter_configure(); config_unlock(); + if (file_exists($d_filterconfdirty_path)) + unlink($d_filterconfdirty_path); + $savemsg = "The settings have been applied"; } } |