mirror of
https://github.com/fusionpbx/fusionpbx.git
synced 2025-12-30 00:53:50 +00:00
Fixed more php 8.1 errors (#6748)
* Update call_center_queue_edit.php * Update number_translation_edit.php * Update database_transactions.php * Update xml_cdr_extension_summary.php * Update call_flow_edit.php * Update contact_address_edit.php * Update device_profiles.php
This commit is contained in:
@@ -160,7 +160,7 @@
|
||||
echo " <div class='field'>\n";
|
||||
echo " <select class='formfld' name='include_internal' id='include_internal'>\n";
|
||||
echo " <option value='0'>".$text['option-false']."</option>\n";
|
||||
echo " <option value='1' ".(($include_internal == 1) ? "selected" : null).">".$text['option-true']."</option>\n";
|
||||
echo " <option value='1' ".((!empty($include_internal) && $include_internal == 1) ? "selected" : null).">".$text['option-true']."</option>\n";
|
||||
echo " </select>\n";
|
||||
echo " </div>\n";
|
||||
echo " </div>\n";
|
||||
@@ -244,4 +244,4 @@
|
||||
//show the footer
|
||||
require_once "resources/footer.php";
|
||||
|
||||
?>
|
||||
?>
|
||||
|
||||
Reference in New Issue
Block a user