diff options
author | lgcosta <lgcosta@pfsense.org> | 2011-05-23 11:56:32 -0300 |
---|---|---|
committer | lgcosta <lgcosta@pfsense.org> | 2011-05-23 11:56:32 -0300 |
commit | 7a18dfa4ed218ad7b114d9cd52c008a76c811614 (patch) | |
tree | 0c0036bac569cf2921228e9596b14f808dcbc684 /usr | |
parent | abcdca835cbce83d72d70bb957bbbf2118ae3d01 (diff) | |
download | pfsense-7a18dfa4ed218ad7b114d9cd52c008a76c811614.zip pfsense-7a18dfa4ed218ad7b114d9cd52c008a76c811614.tar.gz |
Fixes #1444. Implements the same fix that issue ermal made in #1522 to the console menu
Diffstat (limited to 'usr')
-rwxr-xr-x | usr/local/www/interfaces.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usr/local/www/interfaces.php b/usr/local/www/interfaces.php index ead78cc..899e209 100755 --- a/usr/local/www/interfaces.php +++ b/usr/local/www/interfaces.php @@ -310,7 +310,7 @@ if ($_POST['apply']) { $toapplylist = unserialize(file_get_contents("{$g['tmp_path']}/.interfaces.apply")); foreach ($toapplylist as $ifapply) { if (isset($config['interfaces'][$ifapply]['enable'])) - interface_reconfigure($ifapply); + interface_reconfigure($ifapply, true); else interface_bring_down($ifapply); } |