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
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 2 deletions

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