From c249e1c1a4be1b0fde53b2457146bc6b95af0c79 Mon Sep 17 00:00:00 2001 From: FusionPBX Date: Wed, 13 Mar 2024 11:13:50 -0600 Subject: [PATCH] Support a 0 value Used !isset to support a value of 0 as empty the empty function considers a value of 0 as empty. --- app/devices/device_edit.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/devices/device_edit.php b/app/devices/device_edit.php index 8bfa777b47..dcdef7e80e 100644 --- a/app/devices/device_edit.php +++ b/app/devices/device_edit.php @@ -1239,7 +1239,7 @@ if (empty($row['server_address'])) { $row['server_address'] = $_SESSION['domain_name']; } } if (empty($row['sip_transport'])) { $row['sip_transport'] = $_SESSION['provision']['line_sip_transport']['text']; } - if (empty($row['sip_port'])) { $row['sip_port'] = $_SESSION['provision']['line_sip_port']['numeric']; } + if (!isset($row['sip_port'])) { $row['sip_port'] = $_SESSION['provision']['line_sip_port']['numeric']; } //used !isset to support a value of 0 as empty the empty function considers a value of 0 as empty. if (empty($row['register_expires'])) { $row['register_expires'] = $_SESSION['provision']['line_register_expires']['numeric']; } //add the primary key uuid