fix bugs in php 8.1 changes (#6744)
* Update voicemail_greetings.php * Update recordings.php * Update recording_edit.php * Update phrases.php * Update phrase_edit.php * Update music_on_hold_edit.php * Update fax_queue.php * Update extensions.php * Update email_templates.php * Update email_queue_edit.php * Update dialplan_inbound_add.php * Update device_profiles.php * Update device_profile_copy.php * Update contact_address_edit.php * Update call_recordings.php * Update call_center_agent_edit.php * Update call_center_agents.php * Update call_center_queues.php * Update call_block.php * Update menu_edit.php * Update default_setting_edit.php * Update database_edit.php
This commit is contained in:
@@ -63,7 +63,7 @@
|
||||
if (count($_POST) > 0) {
|
||||
|
||||
//process the http post data by submitted action
|
||||
if (!empty($_POST['action']) != '' && is_uuid($_POST['phrase_uuid'])) {
|
||||
if (!empty($_POST['action']) && is_uuid($_POST['phrase_uuid'])) {
|
||||
$array[0]['checked'] = 'true';
|
||||
$array[0]['uuid'] = $_POST['phrase_uuid'];
|
||||
|
||||
@@ -270,7 +270,7 @@
|
||||
}
|
||||
|
||||
//pre-populate the form
|
||||
if (count($_GET)>0 && $_POST["persistformvar"] != "true") {
|
||||
if (count($_GET)>0 && empty($_POST["persistformvar"])) {
|
||||
$phrase_uuid = $_GET["id"];
|
||||
$sql = "select * from v_phrases ";
|
||||
$sql .= "where ( ";
|
||||
|
||||
Reference in New Issue
Block a user