diff options
author | Scott Ullrich <sullrich@pfsense.org> | 2005-12-26 02:11:31 +0000 |
---|---|---|
committer | Scott Ullrich <sullrich@pfsense.org> | 2005-12-26 02:11:31 +0000 |
commit | 3fdb04a65df0448cf91037839ba5fe52af8f4cde (patch) | |
tree | 52461620eeab5af5b0e16210cfe012beb6e37ff9 | |
parent | e747dbb86a88f3be08bce5d9f07de124e25a0431 (diff) | |
download | pfsense-3fdb04a65df0448cf91037839ba5fe52af8f4cde.zip pfsense-3fdb04a65df0448cf91037839ba5fe52af8f4cde.tar.gz |
Sync filter after deleting a tunnel
-rwxr-xr-x | usr/local/www/vpn_ipsec.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/usr/local/www/vpn_ipsec.php b/usr/local/www/vpn_ipsec.php index a3f26e6..5bcb980 100755 --- a/usr/local/www/vpn_ipsec.php +++ b/usr/local/www/vpn_ipsec.php @@ -74,6 +74,7 @@ if ($_POST) { if ($_GET['act'] == "del") { if ($a_ipsec[$_GET['id']]) { unset($a_ipsec[$_GET['id']]); + filter_configure(); write_config(); header("Location: vpn_ipsec.php"); exit; |