mirror of
https://github.com/fusionpbx/fusionpbx.git
synced 2026-01-03 18:33:49 +00:00
Set the mitel mac address to upper case.
This commit is contained in:
@@ -707,12 +707,15 @@ include "root.php";
|
||||
case "aastra":
|
||||
$mac = strtoupper($mac);
|
||||
break;
|
||||
case "snom":
|
||||
$mac = strtolower($mac);
|
||||
case "mitel":
|
||||
$mac = strtoupper($mac);
|
||||
break;
|
||||
case "polycom":
|
||||
$mac = strtolower($mac);
|
||||
break;
|
||||
case "snom":
|
||||
$mac = strtolower($mac);
|
||||
break;
|
||||
default:
|
||||
$mac = strtolower($mac);
|
||||
$mac = substr($mac, 0,2).'-'.substr($mac, 2,2).'-'.substr($mac, 4,2).'-'.substr($mac, 6,2).'-'.substr($mac, 8,2).'-'.substr($mac, 10,2);
|
||||
|
||||
Reference in New Issue
Block a user