From 2c9f6a157a87f1e38a954b2884124ced27c3cd55 Mon Sep 17 00:00:00 2001 From: FusionPBX Date: Mon, 8 May 2023 12:10:44 -0600 Subject: [PATCH] Enable database authentication by default If no authentication settings are enabled it also defaults to database authentication. --- core/authentication/app_config.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/authentication/app_config.php b/core/authentication/app_config.php index 78211f3dc3..b0f6424bd3 100644 --- a/core/authentication/app_config.php +++ b/core/authentication/app_config.php @@ -39,7 +39,7 @@ $apps[$x]['default_settings'][$y]['default_setting_name'] = "array"; $apps[$x]['default_settings'][$y]['default_setting_value'] = "database"; $apps[$x]['default_settings'][$y]['default_setting_order'] = "10"; - $apps[$x]['default_settings'][$y]['default_setting_enabled'] = "false"; + $apps[$x]['default_settings'][$y]['default_setting_enabled'] = "true"; $apps[$x]['default_settings'][$y]['default_setting_description'] = ""; $y++; $apps[$x]['default_settings'][$y]['default_setting_uuid'] = "bc31a3f4-671b-44ca-8724-64ec077eed0b";