From 6e5f7eabca343bcf0aaab2c056f2ff6dd081c0c5 Mon Sep 17 00:00:00 2001 From: FusionPBX Date: Sat, 5 Jul 2025 08:55:56 -0600 Subject: [PATCH] Fix caller_id_name --- 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 7836c03920..a76f997321 100644 --- a/app/xml_cdr/resources/classes/xml_cdr.php +++ b/app/xml_cdr/resources/classes/xml_cdr.php @@ -446,7 +446,7 @@ unset($i); //get the caller ID from variables - if (!isset($caller_id_number) && isset($xml->variables->caller_id_name)) { + if (!isset($caller_id_name) && isset($xml->variables->caller_id_name)) { $caller_id_name = urldecode($xml->variables->caller_id_name); } if (!isset($caller_id_number) && isset($xml->variables->caller_id_number)) {