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'; }