From 7d45353229dd2afdafe46cc949defe08bdbbe50b Mon Sep 17 00:00:00 2001 From: FusionPBX Date: Sat, 19 May 2018 13:25:02 -0600 Subject: [PATCH] Update xml_cdr_details.php --- 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 c68b304732..38378c49ee 100644 --- a/app/xml_cdr/xml_cdr_details.php +++ b/app/xml_cdr/xml_cdr_details.php @@ -49,7 +49,7 @@ //get the cdr string from the database $sql = "select * from v_xml_cdr "; - if ($_GET['showall'] && permission_exists('xml_cdr_all')) { + if (permission_exists('xml_cdr_all')) { $sql .= "where uuid = '$uuid' "; } else { $sql .= "where uuid = '$uuid' and domain_uuid = '$domain_uuid' ";