From 8bdfcb935bcab5b028968d565d78b2b20904ef9e Mon Sep 17 00:00:00 2001 From: FusionPBX Date: Wed, 28 Sep 2022 12:00:31 -0600 Subject: [PATCH] Time condition set to default false. The add was setting condition to dialplan_continue false and update set to true. This changes makes it consistent as both add and update will set dialplan_continue to false. --- app/time_conditions/time_condition_edit.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/time_conditions/time_condition_edit.php b/app/time_conditions/time_condition_edit.php index e99afdb52d..7aa19f0536 100644 --- a/app/time_conditions/time_condition_edit.php +++ b/app/time_conditions/time_condition_edit.php @@ -176,7 +176,7 @@ //build update array $array['dialplans'][0]['dialplan_uuid'] = $dialplan_uuid; - $array['dialplans'][0]['dialplan_continue'] = 'true'; + $array['dialplans'][0]['dialplan_continue'] = 'false'; if (strlen($dialplan_context) > 0) { $array['dialplans'][0]['dialplan_context'] = $dialplan_context; }