diff options
author | Scott Ullrich <sullrich@pfsense.org> | 2009-10-19 22:19:57 -0400 |
---|---|---|
committer | Scott Ullrich <sullrich@pfsense.org> | 2009-10-19 22:19:57 -0400 |
commit | b4d363928691f872effec0f7406096b6c71b7bc0 (patch) | |
tree | 7865c99ae217dff0ba7da10e644f15a88f5fb614 /usr/local | |
parent | 4aca19b306cf3b5c4cf6a9e2bdb12896d907ea3f (diff) | |
download | pfsense-b4d363928691f872effec0f7406096b6c71b7bc0.zip pfsense-b4d363928691f872effec0f7406096b6c71b7bc0.tar.gz |
Reload filter after applying (what if user changed the interface name, etc)
Diffstat (limited to 'usr/local')
-rwxr-xr-x | usr/local/www/interfaces.php | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/usr/local/www/interfaces.php b/usr/local/www/interfaces.php index 930e775..fe841dc 100755 --- a/usr/local/www/interfaces.php +++ b/usr/local/www/interfaces.php @@ -249,6 +249,8 @@ if ($_POST['apply']) { setup_gateways_monitor(); clear_subsystem_dirty('staticroutes'); + + filter_configure(); } header("Location: interfaces.php?if={$if}"); exit; @@ -269,7 +271,7 @@ if ($_POST) { conf_mount_rw(); /* filter out spaces from descriptions */ $_POST['descr'] = remove_bad_chars($_POST['descr']); - /* okay first of all, cause we are just hidding the PPPoE HTML + /* okay first of all, cause we are just hiding the PPPoE HTML * fields releated to PPPoE resets, we are going to unset $_POST * vars, if the reset feature should not be used. Otherwise the * data validation procedure below, may trigger a false error |