From 764a46458e536a37070fdad800d5524d9be64b1e Mon Sep 17 00:00:00 2001 From: FusionPBX Date: Wed, 26 May 2021 10:53:50 -0600 Subject: [PATCH] Update xml_cdr_import.php --- app/xml_cdr/xml_cdr_import.php | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/app/xml_cdr/xml_cdr_import.php b/app/xml_cdr/xml_cdr_import.php index cf76bd4640..14cb583a19 100644 --- a/app/xml_cdr/xml_cdr_import.php +++ b/app/xml_cdr/xml_cdr_import.php @@ -44,10 +44,11 @@ ini_set('memory_limit', '256M'); ini_set("precision", 6); +//import the call detail records $cdr = new xml_cdr; -//import from the FreeSWITCH POST + //import from the FreeSWITCH POST $cdr->post(); -//import from the file system + //import from the file system $cdr->read_files(); -?> \ No newline at end of file +?>