From cc32e04538d5b1db20a9257eeca8787f665e00bc Mon Sep 17 00:00:00 2001 From: Antonio Fernandez Date: Tue, 5 May 2026 14:31:59 -0400 Subject: [PATCH] Remove colon from Ring Group Caller ID Prefix (#7956) * Do not allow colon to be used since it breaks the CID name prefix --- app/ring_groups/ring_group_edit.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/ring_groups/ring_group_edit.php b/app/ring_groups/ring_group_edit.php index 738acd4bd..b661334f2 100644 --- a/app/ring_groups/ring_group_edit.php +++ b/app/ring_groups/ring_group_edit.php @@ -218,7 +218,7 @@ $ring_group_timeout_action = $_POST["ring_group_timeout_action"]; $ring_group_exit_key = $_POST["ring_group_exit_key"] ?? null; $ring_group_call_timeout = $_POST["ring_group_call_timeout"]; - $ring_group_caller_id_name = $_POST["ring_group_caller_id_name"]; + $ring_group_caller_id_name = str_replace(':', '', $_POST["ring_group_caller_id_name"]); $ring_group_caller_id_number = $_POST["ring_group_caller_id_number"]; $ring_group_cid_name_prefix = $_POST["ring_group_cid_name_prefix"] ?? null; $ring_group_cid_number_prefix = $_POST["ring_group_cid_number_prefix"] ?? null;