From 557afd01ad8c9ac0a039a27f27ca51dad70f7ece Mon Sep 17 00:00:00 2001 From: FusionPBX Date: Wed, 1 May 2024 09:15:49 -0600 Subject: [PATCH] Call block save_call_detail_record default Set to save the record by default. The reason is to have a record of it so that if it's abused it can be reported. --- app/call_block/app_config.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/call_block/app_config.php b/app/call_block/app_config.php index 04913de6fa..38d6bb5d4d 100644 --- a/app/call_block/app_config.php +++ b/app/call_block/app_config.php @@ -44,7 +44,7 @@ $apps[$x]['default_settings'][$y]['default_setting_category'] = "call_block"; $apps[$x]['default_settings'][$y]['default_setting_subcategory'] = "save_call_detail_record"; $apps[$x]['default_settings'][$y]['default_setting_name'] = "boolean"; - $apps[$x]['default_settings'][$y]['default_setting_value'] = "false"; + $apps[$x]['default_settings'][$y]['default_setting_value'] = "true"; $apps[$x]['default_settings'][$y]['default_setting_enabled'] = "true"; $apps[$x]['default_settings'][$y]['default_setting_description'] = "Choose whether to save the call detail record when the call is blocked."; @@ -202,4 +202,4 @@ $apps[$x]['db'][$y]['fields'][$z]['type']['mysql'] = "char(36)"; $apps[$x]['db'][$y]['fields'][$z]['description']['en-us'] = ""; -?> \ No newline at end of file +?>