Update xml_cdr.php

This commit is contained in:
FusionPBX
2024-01-18 14:13:44 -07:00
committed by GitHub
parent 32f8711b14
commit 51fe5f1d4b

View File

@@ -163,6 +163,13 @@
//parse the xml and insert the data into the db
$cdr->xml_array($i, $leg, $call_details);
}
//limit the number of records process at one time
if ($i == 100) {
break;
}
//increment the value
$i++;
}
}