summaryrefslogtreecommitdiffstats
path: root/usr/local
diff options
context:
space:
mode:
authorScott Ullrich <sullrich@pfsense.org>2005-11-07 18:35:52 +0000
committerScott Ullrich <sullrich@pfsense.org>2005-11-07 18:35:52 +0000
commit7c99b15cee35d532f796d6f4785d20f6d2c6c793 (patch)
tree324e5f061d10e2fbadf922db41c8429c6574ea42 /usr/local
parent219baec833223c5f1b6de74bdeaa66b815f38e89 (diff)
downloadpfsense-7c99b15cee35d532f796d6f4785d20f6d2c6c793.zip
pfsense-7c99b15cee35d532f796d6f4785d20f6d2c6c793.tar.gz
MFC 7447
Only check against an item if external-address is defined Ticket #648
Diffstat (limited to 'usr/local')
-rwxr-xr-xusr/local/www/firewall_virtual_ip.php8
1 files changed, 5 insertions, 3 deletions
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;
+ }
}
}
}
OpenPOWER on IntegriCloud