mirror of
https://github.com/fusionpbx/fusionpbx.git
synced 2025-12-30 00:53:50 +00:00
php 8.1 changes (#6721)
* Update call_flows.php * Update call_flow_edit.php * Update call_forward.php * Update call_forward_edit.php * Update call_recordings.php * Update conference_centers.php * Update default_settings.php * Update default_setting_edit.php * Update access_controls.php * Update number_translations.php * Update number_translation_edit.php * Update setting_edit.php * Update bridges.php * Update bridge_edit.php * Update call_broadcast_edit.php * Update call_broadcast.php * Update call_block.php * Update call_broadcast_edit.php * Update call_center_agent_edit.php * Update call_center_agent_status.php * Update call_recordings.php
This commit is contained in:
@@ -86,7 +86,7 @@
|
||||
|
||||
//build the query string
|
||||
$query_string = '';
|
||||
if ($search != '') {
|
||||
if (!empty($search)) {
|
||||
$query_string .= 'search='.urlencode($search);
|
||||
}
|
||||
if ($default_setting_category != '') {
|
||||
@@ -95,7 +95,7 @@
|
||||
}
|
||||
|
||||
//process the http post
|
||||
if (count($_POST) > 0 && empty($_POST["persistformvar"])) {
|
||||
if (!empty($_POST) && empty($_POST["persistformvar"])) {
|
||||
|
||||
//set the default_setting_uuid
|
||||
if ($action == "update") {
|
||||
|
||||
Reference in New Issue
Block a user