summaryrefslogtreecommitdiffstats
path: root/usr/local/www/load_balancer_pool.php
diff options
context:
space:
mode:
authorjim-p <jimp@pfsense.org>2012-09-26 13:20:39 -0400
committerjim-p <jimp@pfsense.org>2012-09-26 13:20:39 -0400
commit6e9b046e51f5728b8d8f0182b401476059040d1d (patch)
tree911aacf1b1623c1ca876b2d7f721b196f450e734 /usr/local/www/load_balancer_pool.php
parentfd3515f2b78184125e0f16a4a991660003ff7cd0 (diff)
downloadpfsense-6e9b046e51f5728b8d8f0182b401476059040d1d.zip
pfsense-6e9b046e51f5728b8d8f0182b401476059040d1d.tar.gz
Due to the DHCP pool tag needing to be an array, rename the old LB "pool" variable to something else so it's not interpreted as an array.
Diffstat (limited to 'usr/local/www/load_balancer_pool.php')
-rwxr-xr-xusr/local/www/load_balancer_pool.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/usr/local/www/load_balancer_pool.php b/usr/local/www/load_balancer_pool.php
index 584d184..0c57359 100755
--- a/usr/local/www/load_balancer_pool.php
+++ b/usr/local/www/load_balancer_pool.php
@@ -68,7 +68,7 @@ if ($_GET['act'] == "del") {
/* make sure no virtual servers reference this entry */
if (is_array($config['load_balancer']['virtual_server'])) {
foreach ($config['load_balancer']['virtual_server'] as $vs) {
- if ($vs['pool'] == $a_pool[$_GET['id']]['name']) {
+ if ($vs['poolname'] == $a_pool[$_GET['id']]['name']) {
$input_errors[] = gettext("This entry cannot be deleted because it is still referenced by at least one virtual server.");
break;
}
OpenPOWER on IntegriCloud