mirror of
https://github.com/fusionpbx/fusionpbx.git
synced 2025-12-30 00:53:50 +00:00
Call Centers: Fix PHP 8.x issue on explode function in app_defaults.php.
This commit is contained in:
@@ -78,7 +78,7 @@ if ($domains_processed == 1) {
|
||||
foreach ($call_center_queues as $row) {
|
||||
|
||||
//get the application and data
|
||||
$action_array = explode(":",$row['queue_timeout_action']);
|
||||
$action_array = explode(":",$row['queue_timeout_action'] ?? '');
|
||||
$queue_timeout_app = $action_array[0];
|
||||
unset($action_array[0]);
|
||||
$queue_timeout_data = implode($action_array);
|
||||
|
||||
Reference in New Issue
Block a user