From a368a026db2e79ef7c48f5db0fbff27da5468c26 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ermal=20Lu=E7i?= Date: Tue, 30 Jun 2009 17:11:30 +0000 Subject: * 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 --- usr/local/www/services_captiveportal_mac.php | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) (limited to 'usr/local/www/services_captiveportal_mac.php') diff --git a/usr/local/www/services_captiveportal_mac.php b/usr/local/www/services_captiveportal_mac.php index 1b779f5..0579749 100755 --- a/usr/local/www/services_captiveportal_mac.php +++ b/usr/local/www/services_captiveportal_mac.php @@ -55,11 +55,8 @@ if ($_POST) { $retval = captiveportal_passthrumac_configure(); $savemsg = get_std_save_message($retval); - if ($retval == 0) { - if (file_exists($d_passthrumacsdirty_path)) { - unlink($d_passthrumacsdirty_path); - } - } + if ($retval == 0) + clear_subsystem_dirty('passthrumac'); } } @@ -67,7 +64,7 @@ if ($_GET['act'] == "del") { if ($a_passthrumacs[$_GET['id']]) { unset($a_passthrumacs[$_GET['id']]); write_config(); - touch($d_passthrumacsdirty_path); + mark_subsystem_dirty('passthrumac'); header("Location: services_captiveportal_mac.php"); exit; } @@ -80,7 +77,7 @@ include("head.inc");
-

+

You must apply the changes in order for them to take effect.");?>
-- cgit v1.1