From a6002f995904695c572da9744d5fd2cbf1317041 Mon Sep 17 00:00:00 2001 From: FusionPBX Date: Thu, 30 May 2024 02:53:51 -0600 Subject: [PATCH] Update xml_cdr_log.php --- app/xml_cdr/xml_cdr_log.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/xml_cdr/xml_cdr_log.php b/app/xml_cdr/xml_cdr_log.php index be4c824b04..a508f49d90 100644 --- a/app/xml_cdr/xml_cdr_log.php +++ b/app/xml_cdr/xml_cdr_log.php @@ -43,8 +43,8 @@ $text = $language->get(); //get the ID - $xml_cdr_uuid = $_GET['id']; - $action = $_GET['a']; + $xml_cdr_uuid = $_GET['id'] ?? ''; + $action = $_GET['a'] ?? ''; //get the cdr json from the database $sql = "select * from v_xml_cdr_logs ";