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

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++;
}
}