Fix the extension summary and call flow summary

Set the time zone in PHP so that it is correct inside the class method for the extension summary and the call flow summary
This commit is contained in:
FusionPBX 2024-11-08 17:21:18 -07:00 committed by GitHub
parent 2ad7f5df6d
commit 139867815f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 8 additions and 0 deletions

View File

@ -1131,6 +1131,9 @@ if (!class_exists('xml_cdr')) {
$time_zone = date_default_timezone_get();
}
//set the time zone for php
date_default_timezone_set($time_zone);
//get the destination select list
$destination = new destinations;
$destination_array = $destination->get('dialplan');
@ -1627,6 +1630,9 @@ if (!class_exists('xml_cdr')) {
$time_zone = date_default_timezone_get();
}
//set the time zone for php
date_default_timezone_set($time_zone);
//build the date range
if ((!empty($this->start_stamp_begin) && strlen($this->start_stamp_begin) > 0) || !empty($this->start_stamp_end)) {
unset($this->quick_select);
@ -1810,6 +1816,8 @@ if (!class_exists('xml_cdr')) {
else {
$sql .= " where true \n";
}
$sql .= "and leg = 'a' ";
$sql .= "and extension_uuid is not null ";
$sql .= $sql_date_range;
$sql .= ") as c \n";