diff options
author | Scott Ullrich <sullrich@pfsense.org> | 2006-03-26 18:51:22 +0000 |
---|---|---|
committer | Scott Ullrich <sullrich@pfsense.org> | 2006-03-26 18:51:22 +0000 |
commit | b165960316f570b6f20466ed849b7853c7377e51 (patch) | |
tree | 07aacc49fde11ad4566602cb67947353f7b29229 /usr | |
parent | b18bff2071ac3d9a3c902efdf84bbe08188ab7c6 (diff) | |
download | pfsense-b165960316f570b6f20466ed849b7853c7377e51.zip pfsense-b165960316f570b6f20466ed849b7853c7377e51.tar.gz |
* Call interfaces_lan_configure()
* Call interfaces_opt_configure($index)
Diffstat (limited to 'usr')
-rwxr-xr-x | usr/local/www/interfaces_lan.php | 4 | ||||
-rwxr-xr-x | usr/local/www/interfaces_opt.php | 2 |
2 files changed, 4 insertions, 2 deletions
diff --git a/usr/local/www/interfaces_lan.php b/usr/local/www/interfaces_lan.php index 9a32a17..b800050 100755 --- a/usr/local/www/interfaces_lan.php +++ b/usr/local/www/interfaces_lan.php @@ -127,11 +127,13 @@ if ($_POST) { touch($d_landirty_path); if ($_POST['apply'] <> "") { - interfaces_opt_configure(); + + interfaces_lan_configure(); unlink($d_landirty_path); $savemsg = "The changes have been applied. You may need to correct the web browsers ip address."; + } } } diff --git a/usr/local/www/interfaces_opt.php b/usr/local/www/interfaces_opt.php index 3ebd9ac..85baf10 100755 --- a/usr/local/www/interfaces_opt.php +++ b/usr/local/www/interfaces_opt.php @@ -197,7 +197,7 @@ if ($_POST) { write_config(); - interfaces_opt_configure(); + interfaces_optional_configure_if($index); /* sync filter configuration */ filter_configure(); |