Update calls.php

This commit is contained in:
FusionPBX 2018-07-12 20:58:18 -06:00 committed by GitHub
parent 3bdaee340b
commit 0a5bd19a2d
1 changed files with 7 additions and 10 deletions

View File

@ -167,9 +167,7 @@
if (permission_exists('call_forward')) { echo "<th>".$text['label-call-forward']."</th>\n"; }
if (permission_exists('follow_me')) { echo "<th>".$text['label-follow-me']."</th>\n"; }
if (permission_exists('do_not_disturb')) { echo "<th>".$text['label-dnd']."</th>\n"; }
if (!$is_included) {
echo "<th class='hidden-xs'>".$text['table-description']."</th>\n";
}
echo "<th>".$text['label-description']."</th>\n";
echo " <td class='list_control_icon'>&nbsp;</td>\n";
echo "</tr>\n";
@ -209,9 +207,8 @@
if (permission_exists('do_not_disturb')) {
echo " <td valign='top' class='".$row_style[$c]."'>".(($row['do_not_disturb'] == 'true') ? $text['label-enabled'] : '&nbsp;')."</td>";
}
if (!$is_included) {
echo "<td valign='top' class='row_stylebg hidden-xs'>".escape($row['description'])."&nbsp;</td>\n";
}
echo " <td valign='top' class='".$row_style[$c]."'>".escape($row['description'])."&nbsp;</td>\n";
echo " <td class='list_control_icon'><a href='".$tr_url."' alt='".$text['button-edit']."'>".$v_link_label_edit."</a></td>\n";
echo "</tr>\n";
$c = ($c) ? 0 : 1;