From ad356bb7ee29bec22b22ec4d2ba401d561bfe5e4 Mon Sep 17 00:00:00 2001 From: Scott Ullrich Date: Mon, 24 Jul 2006 21:02:19 +0000 Subject: Split up gateway pools and check them. $_POST['gateway'] has already been moved to the gateway box. --- usr/local/www/load_balancer_pool_edit.php | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) (limited to 'usr/local/www/load_balancer_pool_edit.php') diff --git a/usr/local/www/load_balancer_pool_edit.php b/usr/local/www/load_balancer_pool_edit.php index 2c8e4b5..8baa151 100755 --- a/usr/local/www/load_balancer_pool_edit.php +++ b/usr/local/www/load_balancer_pool_edit.php @@ -99,10 +99,13 @@ if ($_POST) { for ($j = 1; isset ($config['interfaces']['opt' . $j]); $j++) { $ifdescrs['opt' . $j] = "opt" . $j; } - foreach($ifdescrs as $iface) { - if($config['interfaces'][$iface]['ipaddr'] <> "") - if($config['interfaces'][$iface]['ipaddr'] == $_POST['gateway']) - $input_errors[] = "{$_POST['gateway']} is currently being referenced by an interface ip address on {$iface}."; + foreach($pconfig['servers'] as $svrent) { + $split_ip = split("\|", $svrent); + foreach($ifdescrs as $iface) { + if($config['interfaces'][$iface]['ipaddr'] <> "") + if($config['interfaces'][$iface]['ipaddr'] == $split_ip[0]) + $input_errors[] = "{$split_ip[0]} is currently being referenced by an interface ip address on {$iface}."; + } } } -- cgit v1.1