summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xusr/local/www/services_dhcp.php7
1 files changed, 4 insertions, 3 deletions
diff --git a/usr/local/www/services_dhcp.php b/usr/local/www/services_dhcp.php
index 086e38d..152877d 100755
--- a/usr/local/www/services_dhcp.php
+++ b/usr/local/www/services_dhcp.php
@@ -253,9 +253,10 @@ if ($_POST) {
}
$noip = false;
- foreach ($a_maps as $map)
- if (empty($map['ipaddr']))
- $noip = true;
+ if(is_array($a_maps))
+ foreach ($a_maps as $map)
+ if (empty($map['ipaddr']))
+ $noip = true;
if ($_POST['staticarp'] && $noip)
$input_errors[] = "Cannot enable static ARP when you have static map entries without IP addresses. Ensure all static maps have IP addresses and try again.";
OpenPOWER on IntegriCloud