Update destinations.php
This commit is contained in:
parent
3815ce0ef1
commit
384504e240
|
|
@ -233,7 +233,9 @@
|
|||
echo th_order_by('destination_type', $text['label-destination_type'], $order_by, $order, $param);
|
||||
echo th_order_by('destination_number', $text['label-destination_number'], $order_by, $order, $param);
|
||||
echo "<th>". $text['label-detail_action']."</th>";
|
||||
echo th_order_by('destination_context', $text['label-destination_context'], $order_by, $order, $param);
|
||||
if (permission_exists("destination_context")) {
|
||||
echo th_order_by('destination_context', $text['label-destination_context'], $order_by, $order, $param);
|
||||
}
|
||||
if (permission_exists('outbound_caller_id_select')) {
|
||||
echo th_order_by('destination_caller_id_name', $text['label-destination_caller_id_name'], $order_by, $order, $param);
|
||||
echo th_order_by('destination_caller_id_number', $text['label-destination_caller_id_number'], $order_by, $order, $param);
|
||||
|
|
@ -276,7 +278,9 @@
|
|||
echo " <td valign='top' class='".$row_style[$c]."'>".escape(format_phone($row['destination_number']))." </td>\n";
|
||||
echo " <td valign='top' class='".$row_style[$c]."'>".$action_name." </td>\n";
|
||||
//echo " <td valign='top' class='".$row_style[$c]."'>".$row['destination_number_regex']." </td>\n";
|
||||
echo " <td valign='top' class='".$row_style[$c]."'>".escape($row['destination_context'])." </td>\n";
|
||||
if (permission_exists("destination_context")) {
|
||||
echo " <td valign='top' class='".$row_style[$c]."'>".escape($row['destination_context'])." </td>\n";
|
||||
}
|
||||
//echo " <td valign='top' class='".$row_style[$c]."'>".escape($row['fax_uuid'])." </td>\n";
|
||||
if (permission_exists('outbound_caller_id_select')) {
|
||||
echo " <td valign='top' class='".$row_style[$c]."'>".escape($row['destination_caller_id_name'])." </td>\n";
|
||||
|
|
|
|||
Loading…
Reference in New Issue