summaryrefslogtreecommitdiffstats
path: root/usr
diff options
context:
space:
mode:
authorScott Ullrich <sullrich@pfsense.org>2007-10-19 20:46:05 +0000
committerScott Ullrich <sullrich@pfsense.org>2007-10-19 20:46:05 +0000
commitf15f4b4d413a073f39b3f387dbe0a667f02d9aac (patch)
tree93bbe0042e0c4dfd7d8d51962a8ce7fea3c9d4f0 /usr
parent87e629404e857d4c174459d61c885792e4c64dbf (diff)
downloadpfsense-f15f4b4d413a073f39b3f387dbe0a667f02d9aac.zip
pfsense-f15f4b4d413a073f39b3f387dbe0a667f02d9aac.tar.gz
Relax the ip address check and allow duplicate ip address entries.
Diffstat (limited to 'usr')
-rwxr-xr-xusr/local/www/services_dhcp_edit.php2
1 files changed, 1 insertions, 1 deletions
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;
}
OpenPOWER on IntegriCloud