From eed724d4fb9f05b139ebaf4ff3c2d4b8773ee819 Mon Sep 17 00:00:00 2001 From: FusionPBX Date: Fri, 26 Sep 2025 14:19:41 -0600 Subject: [PATCH] Set call screen, call forward and follow me to default to false --- app/ring_groups/ring_group_edit.php | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/app/ring_groups/ring_group_edit.php b/app/ring_groups/ring_group_edit.php index 536b4eb338..0b419a1bd0 100644 --- a/app/ring_groups/ring_group_edit.php +++ b/app/ring_groups/ring_group_edit.php @@ -596,8 +596,11 @@ //set the defaults $destination_delay_max = $settings->get('ring_group', 'destination_delay_max', ''); - $destination_timeout_max = $settings->get('ring_group', 'destination_timeout_max', '');; + $destination_timeout_max = $settings->get('ring_group', 'destination_timeout_max', ''); if (empty($ring_group_call_timeout)) { $ring_group_call_timeout = '30'; } + if ($ring_group_call_screen_enabled === null) { $ring_group_call_screen_enabled = false; } + if ($ring_group_call_forward_enabled === null) { $ring_group_call_forward_enabled = false; } + if ($ring_group_follow_me_enabled === null) { $ring_group_follow_me_enabled = false; } //get the ring group destination array if ($action == "add") {