From f15f4b4d413a073f39b3f387dbe0a667f02d9aac Mon Sep 17 00:00:00 2001 From: Scott Ullrich Date: Fri, 19 Oct 2007 20:46:05 +0000 Subject: Relax the ip address check and allow duplicate ip address entries. --- usr/local/www/services_dhcp_edit.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'usr/local') diff --git a/usr/local/www/services_dhcp_edit.php b/usr/local/www/services_dhcp_edit.php index 59d9aa7..da38457 100755 --- a/usr/local/www/services_dhcp_edit.php +++ b/usr/local/www/services_dhcp_edit.php @@ -97,7 +97,7 @@ if ($_POST) { if (isset($id) && ($a_maps[$id]) && ($a_maps[$id] === $mapent)) continue; - if ((($mapent['hostname'] == $_POST['hostname']) && $mapent['hostname']) || ($mapent['mac'] == $_POST['mac']) || ($_POST['ipaddr'])) { + if ((($mapent['hostname'] == $_POST['hostname']) && $mapent['hostname']) || ($mapent['mac'] == $_POST['mac'])) { $input_errors[] = "This Hostname, IP or MAC address already exists."; break; } -- cgit v1.1