From 14d69d6ca2a4cc2a327e92ec18390fcdb4eec4ed Mon Sep 17 00:00:00 2001 From: FusionPBX Date: Wed, 15 May 2024 14:52:00 -0600 Subject: [PATCH] Update xml_cdr.php --- app/xml_cdr/resources/classes/xml_cdr.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/xml_cdr/resources/classes/xml_cdr.php b/app/xml_cdr/resources/classes/xml_cdr.php index 28e1b31edf..f49b0c49bb 100644 --- a/app/xml_cdr/resources/classes/xml_cdr.php +++ b/app/xml_cdr/resources/classes/xml_cdr.php @@ -418,10 +418,10 @@ if (!class_exists('xml_cdr')) { } //if intercept is used then update use the last sent callee id name and number - if (isset(($xml->variables->last_app) && $xml->variables->last_app == 'intercept' && !empty($xml->variables->last_sent_callee_id_name)) { + if (isset($xml->variables->last_app) && $xml->variables->last_app == 'intercept' && !empty($xml->variables->last_sent_callee_id_name)) { $caller_id_name = urldecode($xml->variables->last_sent_callee_id_name); } - if (isset(($xml->variables->last_app) && $xml->variables->last_app == 'intercept' && !empty($xml->variables->last_sent_callee_id_number)) { + if (isset($xml->variables->last_app) && $xml->variables->last_app == 'intercept' && !empty($xml->variables->last_sent_callee_id_number)) { $caller_id_number = urldecode($xml->variables->last_sent_callee_id_number); }