mirror of
https://github.com/fusionpbx/fusionpbx.git
synced 2026-01-06 11:43:50 +00:00
Fixed call broadcast and call block php 8.1 errors (#6750)
* Update call_block_edit.php * Update call_broadcast_send.php * Update call_broadcast_send.php
This commit is contained in:
@@ -102,7 +102,7 @@
|
||||
}
|
||||
break;
|
||||
case 'add':
|
||||
$xml_cdrs = $_POST['xml_cdrs'];
|
||||
$xml_cdrs = $_POST['xml_cdrs'] ?? null;
|
||||
if (!empty($xml_cdrs) && permission_exists('call_block_add')) {
|
||||
$obj = new call_block;
|
||||
$obj->call_block_direction = $call_block_direction;
|
||||
|
||||
Reference in New Issue
Block a user