From 5759a636e649cfc6f8dfc76e0096bbd18d6945aa Mon Sep 17 00:00:00 2001 From: FusionPBX Date: Thu, 8 Jun 2023 18:47:17 -0600 Subject: [PATCH] Add missing cc_queue_joined_epoch variable --- app/xml_cdr/resources/classes/xml_cdr.php | 1 + 1 file changed, 1 insertion(+) diff --git a/app/xml_cdr/resources/classes/xml_cdr.php b/app/xml_cdr/resources/classes/xml_cdr.php index d84ddf3361..aebc9ed2fc 100644 --- a/app/xml_cdr/resources/classes/xml_cdr.php +++ b/app/xml_cdr/resources/classes/xml_cdr.php @@ -529,6 +529,7 @@ if (!class_exists('xml_cdr')) { $this->array[$key]['cc_agent'] = urldecode($xml->variables->cc_agent); $this->array[$key]['cc_agent_type'] = urldecode($xml->variables->cc_agent_type); $this->array[$key]['cc_agent_bridged'] = urldecode($xml->variables->cc_agent_bridged); + $this->array[$key]['cc_queue_joined_epoch'] = urldecode($xml->variables->cc_queue_joined_epoch); $this->array[$key]['cc_queue_answered_epoch'] = urldecode($xml->variables->cc_queue_answered_epoch); $this->array[$key]['cc_queue_terminated_epoch'] = urldecode($xml->variables->cc_queue_terminated_epoch); $this->array[$key]['cc_queue_canceled_epoch'] = urldecode($xml->variables->cc_queue_canceled_epoch);