From 8ef90b9dcccffa1c4a37ca060146dbba1387c702 Mon Sep 17 00:00:00 2001 From: FusionPBX Date: Sat, 8 Mar 2025 14:42:35 -0700 Subject: [PATCH] Update xml_cdr.php --- app/xml_cdr/resources/classes/xml_cdr.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/xml_cdr/resources/classes/xml_cdr.php b/app/xml_cdr/resources/classes/xml_cdr.php index 26a18eb2a8..8996ca6e9d 100644 --- a/app/xml_cdr/resources/classes/xml_cdr.php +++ b/app/xml_cdr/resources/classes/xml_cdr.php @@ -692,7 +692,7 @@ if (!class_exists('xml_cdr')) { $this->array[$key][0]['end_epoch'] = $end_epoch; $this->array[$key][0]['end_stamp'] = is_numeric((int)$end_epoch) ? date('c', $end_epoch) : null; $this->array[$key][0]['duration'] = urldecode($xml->variables->billsec); - $this->array[$key][0]['mduration'] = urldecode($xml->variables->billmsec); + $this->array[$key][0]['mduration'] = urldecode($xml->variables->mduration); $this->array[$key][0]['billsec'] = urldecode($xml->variables->billsec); $this->array[$key][0]['billmsec'] = urldecode($xml->variables->billmsec); $this->array[$key][0]['hold_accum_seconds'] = urldecode($xml->variables->hold_accum_seconds);