Frytimo pr patches for php8.1 (#6630)
* Passing null to parameter #2 ($string) of type string is deprecated * Passing null to parameter #1 ($string) of type string is deprecated * php 8.1 fixes * php 8.1 fixes - replace strlen($var) > 0 with !empty($var) * php 8.1 fixes - replace ${var} with {$var} * php 8.1 fixes - replace ${var} with {$var} * php 8.1 fixes - replace ${var} with {$var} * php 8.1 fixes - replace ${var} with {$var} * php 8.1 fixes - strlower with null * php 8.1 fixes - strreplace with null * php 8.1 fixes - passing null to base64_decode * php 8.1 fixes - check for false and check for null on $this->dir * php 8.1 fixes - remove assignment of $db variable to modules object * php 8.1 fixes - avoid sending null to substr * php 8.1 fixes - change ${var} to {$var} * php 8.1 fixes - check for null before preg_replace * php 8.1 fixes - remove setting db variable on domains object * php 8.1 fixes - set empty string if $row['domain_setting_subcategory'] is null * php 8.1 fixes - set empty string if $_REQUEST['show'] is not available * php 8.1 fixes * php 8.1 fixes - correct $_POST checking syntax * php 8.1 fixes - correct $_POST variables * php 8.1 fixes * Use brackets consistently * Update user_setting_edit.php * Change to not empty * Update device.php * Update text.php --------- Co-authored-by: Tim Fry <tim@voipstratus.com> Co-authored-by: FusionPBX <markjcrane@gmail.com>
This commit is contained in:
co-authored by
Tim Fry
FusionPBX
parent
ebbb2f1a72
commit
fef8165be2
@@ -73,7 +73,7 @@
|
||||
}
|
||||
|
||||
//get the conference name
|
||||
if (isset($name) && strlen($name) > 0) {
|
||||
if (isset($name) && !empty($name)) {
|
||||
$name_array = explode('@', $name);
|
||||
$name = $name_array[0];
|
||||
}
|
||||
@@ -182,12 +182,12 @@
|
||||
|
||||
//execute the command
|
||||
if (count($_GET) > 0) {
|
||||
if (strlen($cmd) > 0) {
|
||||
if (!empty($cmd)) {
|
||||
//prepare the switch cmd
|
||||
$switch_cmd = $cmd . " ";
|
||||
$switch_cmd .= $name . " ";
|
||||
$switch_cmd .= $data . " ";
|
||||
if ($id && strlen($id) > 0) {
|
||||
if ($id && !empty($id)) {
|
||||
$switch_cmd .= " ".$id;
|
||||
}
|
||||
|
||||
|
||||
@@ -96,7 +96,7 @@
|
||||
$member_count = $xml->conference['member-count'];
|
||||
$locked = $xml->conference['locked'];
|
||||
$recording = $xml->conference['recording'];
|
||||
if (strlen($member_count) == 0) {
|
||||
if (empty($member_count)) {
|
||||
$member_count = 0;
|
||||
}
|
||||
|
||||
@@ -191,7 +191,7 @@
|
||||
$join_time_formatted = sprintf('%02d:%02d:%02d', ($join_time/3600), ($join_time/60%60), $join_time%60);
|
||||
$last_talking_formatted = sprintf('%02d:%02d:%02d', ($last_talking/3600), ($last_talking/60%60), $last_talking%60);
|
||||
|
||||
if (strlen($record_path) == 0) {
|
||||
if (empty($record_path)) {
|
||||
if (permission_exists('conference_interactive_mute')) {
|
||||
$action_mute = ($flag_can_speak == "true") ? 'mute' : 'unmute';
|
||||
$list_row_onclick = "onclick=\"send_cmd('conference_exec.php?cmd=conference&name=".urlencode($conference_name)."&data=".$action_mute."&id=".urlencode($id)."');\"";
|
||||
|
||||
Reference in New Issue
Block a user