Fix a small bug with provisioning device_vendor make sure it is set to lower case.

This commit is contained in:
Mark Crane
2013-11-01 18:51:52 +00:00
parent fdeb3fb1b0
commit 24f2c756af
2 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -49,7 +49,7 @@ else {
$device_uuid = $row["device_uuid"];
$device_mac_address = $row["device_mac_address"];
$device_label = $row["device_label"];
$device_vendor = $row["device_vendor"];
$device_vendor = strtolower($row["device_vendor"]);
$device_model = $row["device_model"];
$device_firmware_version = $row["device_firmware_version"];
$device_provision_enable = $row["device_provision_enable"];