diff options
author | Ermal Luçi <eri@pfsense.org> | 2009-06-30 17:11:30 +0000 |
---|---|---|
committer | Ermal Luçi <eri@pfsense.org> | 2009-06-30 17:15:22 +0000 |
commit | a368a026db2e79ef7c48f5db0fbff27da5468c26 (patch) | |
tree | 0b68b80cafa3f8cc310d8deaaa8a8fbd2e2f0482 /usr/local/www/firewall_virtual_ip.php | |
parent | 6819b7f60c841f89e415d6547e2e776cf1a47c5e (diff) | |
download | pfsense-a368a026db2e79ef7c48f5db0fbff27da5468c26.zip pfsense-a368a026db2e79ef7c48f5db0fbff27da5468c26.tar.gz |
* Reorganize the 'apply' button infrustructure in the GUI.
- Present three new functions is/mark/clear_subsystem_dirty('name_of_subsystem'). This makes easier to create such things without needing to introduce new globals.
- Convert all pages to the new infrustructure
- This improves a lot the control on this notification
Diffstat (limited to 'usr/local/www/firewall_virtual_ip.php')
-rwxr-xr-x | usr/local/www/firewall_virtual_ip.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr/local/www/firewall_virtual_ip.php b/usr/local/www/firewall_virtual_ip.php index d24f234..2f51a7d 100755 --- a/usr/local/www/firewall_virtual_ip.php +++ b/usr/local/www/firewall_virtual_ip.php @@ -67,7 +67,7 @@ if ($_POST) { interfaces_carp_configure(); $savemsg = get_std_save_message($retval); - unlink_if_exists($d_vipconfdirty_path); + clear_subsystem_dirty('vip'); } } @@ -90,7 +90,7 @@ if ($_GET['act'] == "del") { mwexec("/sbin/ifconfig " . get_real_interface($a_vip[$_GET['id']]['interface']) . " delete {$a_vip[$_GET['id']]['subnet']}"); unset($a_vip[$_GET['id']]); write_config(); - touch($d_vipconfdirty_path); + mark_subsystem_dirty('vip'); header("Location: firewall_virtual_ip.php"); exit; } @@ -111,7 +111,7 @@ include("head.inc"); if ($savemsg) print_info_box($savemsg); else - if (file_exists($d_vipconfdirty_path)) + if (is_subsystem_dirty('vip')) print_info_box_np("The VIP configuration has been changed.<br>You must apply the changes in order for them to take effect."); ?> <br> |