From ceeb720ce702d8c4a5cbde56dbb39d94d8783c3f Mon Sep 17 00:00:00 2001 From: FusionPBX Date: Mon, 3 Nov 2025 11:10:47 -0700 Subject: [PATCH] Update authentication class --- core/authentication/resources/classes/authentication.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/authentication/resources/classes/authentication.php b/core/authentication/resources/classes/authentication.php index d68a612f3c..c1501d8179 100644 --- a/core/authentication/resources/classes/authentication.php +++ b/core/authentication/resources/classes/authentication.php @@ -63,7 +63,7 @@ class authentication { $this->database = $setting_array['database'] ?? database::new(['config' => $config]); //set the settings object - $this->settings = $setting_array['settings']; + $this->settings = $setting_array['settings'] ?? new settings(['database' => $this->database]); //intialize the object $this->user_uuid = null;