settings was being set in constructor but property was missing (#6931)

This commit is contained in:
frytimo
2024-03-29 01:13:01 -03:00
committed by GitHub
parent 6fd5d7cda4
commit 6bd159a717

View File

@@ -49,6 +49,7 @@ if (!class_exists('destinations')) {
private $list_page;
private $table;
private $uuid_prefix;
private $settings;
/**
* Called when the object is created
@@ -60,7 +61,7 @@ if (!class_exists('destinations')) {
}
//get the email queue settings
$this->setting = new settings();
$this->settings = new settings();
//assign private variables
$this->app_name = 'destinations';
@@ -1121,8 +1122,8 @@ if (!class_exists('destinations')) {
public function destination_summary() {
//set the time zone
if (!empty($this->setting->get('domain', 'time_zone'))) {
$time_zone = $this->setting->get('domain', 'time_zone');
if (!empty($this->settings->get('domain', 'time_zone'))) {
$time_zone = $this->settings->get('domain', 'time_zone');
}
else {
$time_zone = date_default_timezone_get();