Fixed call center queue agents table (#6746)
* Update destination_edit.php * Fixed php 8.1 errors * Fixed cdr recording download not working * Update call_center_queue_edit.php * Update call_center_queue_edit.php --------- Co-authored-by: FusionPBX <markjcrane@gmail.com>
This commit is contained in:
@@ -1383,6 +1383,7 @@ if (!class_exists('xml_cdr')) {
|
||||
header("Content-Length: ".filesize($record_file));
|
||||
}
|
||||
ob_clean();
|
||||
fpassthru($fd);
|
||||
|
||||
//content-range
|
||||
if (isset($_SERVER['HTTP_RANGE']) && $_GET['t'] != "bin") {
|
||||
|
||||
@@ -218,7 +218,7 @@
|
||||
*/
|
||||
|
||||
//limit the number of results
|
||||
if ($_SESSION['cdr']['limit']['numeric'] > 0) {
|
||||
if (!empty($_SESSION['cdr']['limit']['numeric']) && $_SESSION['cdr']['limit']['numeric'] > 0) {
|
||||
$num_rows = $_SESSION['cdr']['limit']['numeric'];
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user