Update xml_cdr.php

This commit is contained in:
FusionPBX 2020-04-06 16:11:31 -06:00 committed by GitHub
parent 6512712667
commit 311e647783
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 1 deletions

View File

@ -780,6 +780,9 @@ if (!class_exists('xml_cdr')) {
//get the xml cdr string
$xml_string = file_get_contents($xml_cdr_dir.'/'.$file);
//decode the xml string
//$xml_string = urldecode($xml_string);
//parse the xml and insert the data into the db
$this->xml_array($x, $leg, $xml_string);
@ -1311,4 +1314,4 @@ if (!class_exists('xml_cdr')) {
} //class
}
?>
?>