mirror of
https://github.com/fusionpbx/fusionpbx.git
synced 2025-12-30 00:53:50 +00:00
Need to allow ability to clear the value.
This commit is contained in:
@@ -261,8 +261,8 @@
|
||||
if (permission_exists('device_location')) {
|
||||
$array['devices'][0]['device_location'] = $device_location;
|
||||
}
|
||||
if (permission_exists('device_alternate') && is_uuid($device_uuid_alternate)) {
|
||||
$array['devices'][0]['device_uuid_alternate'] = $device_uuid_alternate;
|
||||
if (permission_exists('device_alternate')) {
|
||||
$array['devices'][0]['device_uuid_alternate'] = is_uuid($device_uuid_alternate) ? $device_uuid_alternate : null;
|
||||
}
|
||||
if (permission_exists('device_model')) {
|
||||
$array['devices'][0]['device_model'] = $device_model;
|
||||
|
||||
Reference in New Issue
Block a user