From 9fc63d2643f172823ff8078ed2a5c47c5525cd09 Mon Sep 17 00:00:00 2001 From: agree <37550360+greenbea@users.noreply.github.com> Date: Wed, 23 Sep 2020 12:27:02 -0400 Subject: [PATCH] Fix call direction (#5456) --- app/xml_cdr/xml_cdr_details.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/xml_cdr/xml_cdr_details.php b/app/xml_cdr/xml_cdr_details.php index 9d6e3d22b2..2e0beeecee 100644 --- a/app/xml_cdr/xml_cdr_details.php +++ b/app/xml_cdr/xml_cdr_details.php @@ -134,7 +134,7 @@ //detail summary //get the variables $xml_cdr_uuid = urldecode($array["variables"]["uuid"]); - $direction = urldecode($array["channel_data"]["direction"]); + $direction = urldecode($array["variables"]["call_direction"]); $language = urldecode($array["variables"]["language"]); $start_epoch = urldecode($array["variables"]["start_epoch"]); $start_stamp = urldecode($array["variables"]["start_stamp"]);