mirror of
https://github.com/fusionpbx/fusionpbx.git
synced 2026-01-06 11:43:50 +00:00
Active Conferences: Updates for PHP 8.1
This commit is contained in:
@@ -27,7 +27,7 @@
|
||||
|
||||
The Initial Developer of the Original Code is
|
||||
Mark J Crane <markjcrane@fusionpbx.com>
|
||||
Portions created by the Initial Developer are Copyright (C) 2008-2022
|
||||
Portions created by the Initial Developer are Copyright (C) 2008-2023
|
||||
the Initial Developer. All Rights Reserved.
|
||||
|
||||
Contributor(s):
|
||||
@@ -57,10 +57,10 @@
|
||||
if (count($_GET) > 0) {
|
||||
$cmd = trim($_GET["cmd"]);
|
||||
$name = trim($_GET["name"]);
|
||||
$uuid = trim($_GET["uuid"]);
|
||||
$uuid = trim($_GET["uuid"] ?? '');
|
||||
$data = trim($_GET["data"]);
|
||||
$id = trim($_GET["id"]);
|
||||
$direction = trim($_GET["direction"]);
|
||||
$id = trim($_GET["id"] ?? '');
|
||||
$direction = trim($_GET["direction"] ?? '');
|
||||
}
|
||||
|
||||
//authorized commands
|
||||
|
||||
Reference in New Issue
Block a user