diff options
Diffstat (limited to 'usr')
-rwxr-xr-x | usr/local/www/load_balancer_pool_edit.php | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/usr/local/www/load_balancer_pool_edit.php b/usr/local/www/load_balancer_pool_edit.php index f9c5bb0..10a9b77 100755 --- a/usr/local/www/load_balancer_pool_edit.php +++ b/usr/local/www/load_balancer_pool_edit.php @@ -124,10 +124,12 @@ if ($_POST) { } else $a_pool[] = $poolent; - touch($d_poolconfdirty_path); - if ($changecount > 0) + if ($changecount > 0) { + /* Mark pool dirty */ + touch($d_poolconfdirty_path); write_config($changedesc); + } header("Location: load_balancer_pool.php"); exit; |