summaryrefslogtreecommitdiffstats
path: root/usr/local/www/load_balancer_pool.php
diff options
context:
space:
mode:
authorScott Ullrich <sullrich@pfsense.org>2006-04-16 23:44:44 +0000
committerScott Ullrich <sullrich@pfsense.org>2006-04-16 23:44:44 +0000
commit9fa74125f911fa4bc9bf2b1d561ea54df9280bce (patch)
tree03edaf50b599fc24deb506a7804e252bcf0adc47 /usr/local/www/load_balancer_pool.php
parent8920cca5ba6dc2370ebe7f4ecf8d1c807da4fb51 (diff)
downloadpfsense-9fa74125f911fa4bc9bf2b1d561ea54df9280bce.zip
pfsense-9fa74125f911fa4bc9bf2b1d561ea54df9280bce.tar.gz
MFC 11473
use correct dirty flag file and unlink on apply
Diffstat (limited to 'usr/local/www/load_balancer_pool.php')
-rwxr-xr-xusr/local/www/load_balancer_pool.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/usr/local/www/load_balancer_pool.php b/usr/local/www/load_balancer_pool.php
index ae8d0ff..4deb884 100755
--- a/usr/local/www/load_balancer_pool.php
+++ b/usr/local/www/load_balancer_pool.php
@@ -48,7 +48,7 @@ if ($_POST) {
config_unlock();
$savemsg = get_std_save_message($retval);
- //unlink_if_exists($d_poolconfdirty_path);
+ unlink_if_exists($d_vsconfdirty_path);
}
}
@@ -67,7 +67,7 @@ if ($_GET['act'] == "del") {
if (!$input_errors) {
unset($a_pool[$_GET['id']]);
write_config();
- touch($d_poolconfdirty_path);
+ touch($d_vsconfdirty_path);
header("Location: load_balancer_pool.php");
exit;
}
@@ -84,7 +84,7 @@ include("head.inc");
<form action="load_balancer_pool.php" method="post">
<?php if ($input_errors) print_input_errors($input_errors); ?>
<?php if ($savemsg) print_info_box($savemsg); ?>
-<?php if (file_exists($d_vipconfdirty_path)): ?><p>
+<?php if (file_exists($d_vsconfdirty_path)): ?><p>
<?php print_info_box_np("The load balancer configuration has been changed.<br>You must apply the changes in order for them to take effect.");?><br>
<?php endif; ?>
<table width="100%" border="0" cellpadding="0" cellspacing="0">
OpenPOWER on IntegriCloud