summaryrefslogtreecommitdiffstats
path: root/usr/local/www/services_dhcp_edit.php
diff options
context:
space:
mode:
authorBill Marquette <billm@pfsense.org>2005-04-14 02:21:58 +0000
committerBill Marquette <billm@pfsense.org>2005-04-14 02:21:58 +0000
commit4f3401e0db4bd4964bafe36020e7aebfa62afb59 (patch)
tree197b27020f574a5b8c19289b8315bdefdd338bbf /usr/local/www/services_dhcp_edit.php
parent629dd875f66411c15fbaefd59fc63f8ffa21f648 (diff)
downloadpfsense-4f3401e0db4bd4964bafe36020e7aebfa62afb59.zip
pfsense-4f3401e0db4bd4964bafe36020e7aebfa62afb59.tar.gz
normalize MAC addresses
Diffstat (limited to 'usr/local/www/services_dhcp_edit.php')
-rwxr-xr-xusr/local/www/services_dhcp_edit.php3
1 files changed, 3 insertions, 0 deletions
diff --git a/usr/local/www/services_dhcp_edit.php b/usr/local/www/services_dhcp_edit.php
index b85df9a..1d8b934 100755
--- a/usr/local/www/services_dhcp_edit.php
+++ b/usr/local/www/services_dhcp_edit.php
@@ -68,6 +68,9 @@ if ($_POST) {
$reqdfieldsn = explode(",", "MAC address");
do_input_validation($_POST, $reqdfields, $reqdfieldsn, &$input_errors);
+
+ /* normalize MAC addresses - lowercase and convert Windows-ized hyphenated MACs to colon delimited */
+ $_POST['mac'] = strtolower(str_replace("-", ":", $_POST['mac']));
if (($_POST['ipaddr'] && !is_ipaddr($_POST['ipaddr']))) {
$input_errors[] = "A valid IP address must be specified.";
OpenPOWER on IntegriCloud