mirror of
https://github.com/fusionpbx/fusionpbx.git
synced 2025-12-30 00:53:50 +00:00
Misc: Updates for PHP 8.1 (?: to ??)
This commit is contained in:
@@ -17,7 +17,7 @@
|
||||
|
||||
The Initial Developer of the Original Code is
|
||||
Mark J Crane <markjcrane@fusionpbx.com>
|
||||
Portions created by the Initial Developer are Copyright (C) 2010-2020
|
||||
Portions created by the Initial Developer are Copyright (C) 2010-2023
|
||||
the Initial Developer. All Rights Reserved.
|
||||
|
||||
Contributor(s):
|
||||
@@ -197,7 +197,7 @@
|
||||
$ring_group_forward_enabled = $_POST["ring_group_forward_enabled"];
|
||||
$ring_group_forward_destination = $_POST["ring_group_forward_destination"];
|
||||
$ring_group_forward_toll_allow = $_POST["ring_group_forward_toll_allow"];
|
||||
$ring_group_enabled = $_POST["ring_group_enabled"] ?: 'false';
|
||||
$ring_group_enabled = $_POST["ring_group_enabled"] ?? 'false';
|
||||
$ring_group_description = $_POST["ring_group_description"];
|
||||
$dialplan_uuid = $_POST["dialplan_uuid"];
|
||||
//$ring_group_timeout_action = "transfer:1001 XML default";
|
||||
@@ -392,7 +392,7 @@
|
||||
$array['ring_groups'][0]["ring_group_destinations"][$y]["destination_delay"] = $row['destination_delay'];
|
||||
$array['ring_groups'][0]["ring_group_destinations"][$y]["destination_timeout"] = $row['destination_timeout'];
|
||||
$array['ring_groups'][0]["ring_group_destinations"][$y]["destination_prompt"] = $row['destination_prompt'];
|
||||
$array['ring_groups'][0]["ring_group_destinations"][$y]["destination_enabled"] = $row['destination_enabled'] ?: 'false';
|
||||
$array['ring_groups'][0]["ring_group_destinations"][$y]["destination_enabled"] = $row['destination_enabled'] ?? 'false';
|
||||
$array['ring_groups'][0]["ring_group_destinations"][$y]["domain_uuid"] = $domain_uuid;
|
||||
}
|
||||
$y++;
|
||||
|
||||
Reference in New Issue
Block a user