From 7c99b15cee35d532f796d6f4785d20f6d2c6c793 Mon Sep 17 00:00:00 2001 From: Scott Ullrich Date: Mon, 7 Nov 2005 18:35:52 +0000 Subject: MFC 7447 Only check against an item if external-address is defined Ticket #648 --- usr/local/www/firewall_virtual_ip.php | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) (limited to 'usr/local') diff --git a/usr/local/www/firewall_virtual_ip.php b/usr/local/www/firewall_virtual_ip.php index 0d16091..e009afe 100755 --- a/usr/local/www/firewall_virtual_ip.php +++ b/usr/local/www/firewall_virtual_ip.php @@ -68,9 +68,11 @@ if ($_GET['act'] == "del") { /* make sure no inbound NAT mappings reference this entry */ if (is_array($config['nat']['rule'])) { foreach ($config['nat']['rule'] as $rule) { - if ($rule['external-address'] == $a_vip[$_GET['id']]['ipaddr']) { - $input_errors[] = "This entry cannot be deleted because it is still referenced by at least one NAT mapping."; - break; + if($rule['external-address'] <> "") { + if ($rule['external-address'] == $a_vip[$_GET['id']]['ipaddr']) { + $input_errors[] = "This entry cannot be deleted because it is still referenced by at least one NAT mapping."; + break; + } } } } -- cgit v1.1