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 ";