Fixed call center queue agents table (#6746)
* Update destination_edit.php * Fixed php 8.1 errors * Fixed cdr recording download not working * Update call_center_queue_edit.php * Update call_center_queue_edit.php --------- Co-authored-by: FusionPBX <markjcrane@gmail.com>
This commit is contained in:
@@ -818,7 +818,7 @@
|
||||
echo "</td>\n";
|
||||
echo "</tr>\n";
|
||||
|
||||
if (permission_exists('call_center_tier_view') && !empty($agents)) {
|
||||
if (permission_exists('call_center_tier_view') && !empty($agents) && is_array($agents)) {
|
||||
echo "<tr>";
|
||||
echo " <td class='vncell' valign='top'>".$text['label-agents']."</td>";
|
||||
echo " <td class='vtable' align='left'>";
|
||||
@@ -830,7 +830,7 @@
|
||||
echo " <td></td>\n";
|
||||
echo " </tr>\n";
|
||||
$x = 0;
|
||||
if (!empty($tiers)) {
|
||||
if (is_array($tiers)) {
|
||||
foreach($tiers as $field) {
|
||||
echo " <tr>\n";
|
||||
echo " <td class=''>";
|
||||
|
||||
Reference in New Issue
Block a user