From 83ec8d7e86b17191cd17b2371801c5c0cee0aa9b Mon Sep 17 00:00:00 2001 From: FusionPBX Date: Fri, 14 Aug 2020 09:31:58 -0600 Subject: [PATCH] Change uuid to text for something that should be text. --- app/devices/device_edit.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/app/devices/device_edit.php b/app/devices/device_edit.php index de5ef68e23..b9adc6d69d 100644 --- a/app/devices/device_edit.php +++ b/app/devices/device_edit.php @@ -1063,7 +1063,7 @@ if (permission_exists('device_line_server_address_secondary')) { echo " \n"; - if (is_uuid($_SESSION['provision']['server_address_secondary']['uuid'])) { + if (isset($_SESSION['provision']['server_address_secondary']['text'])) { echo " \n"; } else { @@ -1079,7 +1079,7 @@ if (permission_exists('device_line_outbound_proxy_primary')) { echo " \n"; - if (is_uuid($_SESSION['provision']['outbound_proxy_primary']['uuid'])) { + if (isset($_SESSION['provision']['outbound_proxy_primary']['text'])) { echo " \n"; } else { @@ -1095,7 +1095,7 @@ if (permission_exists('device_line_outbound_proxy_secondary')) { echo " \n"; - if (is_uuid($_SESSION['provision']['outbound_proxy_secondary']['uuid'])) { + if (isset($_SESSION['provision']['outbound_proxy_secondary']['text'])) { echo " \n"; } else {