From f12097d3030586f23c45d84398ca14fa859671ff Mon Sep 17 00:00:00 2001 From: FusionPBX Date: Sat, 19 Jan 2019 13:38:55 -0700 Subject: [PATCH] Update extension_edit.php --- app/extensions/extension_edit.php | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/app/extensions/extension_edit.php b/app/extensions/extension_edit.php index 260d28ade4..66ca7175db 100644 --- a/app/extensions/extension_edit.php +++ b/app/extensions/extension_edit.php @@ -131,6 +131,9 @@ if (!is_numeric($voicemail_id)) { $voicemail_id = NULL; } + + //change toll allow delimiter + $toll_allow = str_replace(',',':', $toll_allow); } //delete the user from the v_extension_users @@ -769,6 +772,9 @@ $destinations = $prep_statement->fetchAll(PDO::FETCH_ASSOC); unset ($sql, $prep_statement); +//change toll allow delimiter + $toll_allow = str_replace(':',',', $toll_allow); + //set the defaults if (strlen($user_context) == 0) { $user_context = $_SESSION['domain_name']; } if (strlen($limit_max) == 0) { $limit_max = '5'; }