Update xml_cdr_log.php

This commit is contained in:
FusionPBX
2024-05-30 02:53:51 -06:00
committed by GitHub
parent f084004047
commit a6002f9959

View File

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