Set the mitel mac address to upper case.
This commit is contained in:
parent
ac09089f17
commit
01edbb30b8
|
|
@ -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);
|
||||
|
|
|
|||
Loading…
Reference in New Issue