diff --git a/app/destinations/destinations.php b/app/destinations/destinations.php index 86e83e9c26..36a4477959 100644 --- a/app/destinations/destinations.php +++ b/app/destinations/destinations.php @@ -225,6 +225,7 @@ echo th_order_by('domain_name', $text['label-domain'], $order_by, $order, $param, "class='shrink'"); } echo th_order_by('destination_type', $text['label-destination_type'], $order_by, $order, $param, "class='shrink'"); + echo th_order_by('destination_prefix', $text['label-destination_prefix'], $order_by, $order, $param, "class='shrink'"); echo th_order_by('destination_number', $text['label-destination_number'], $order_by, $order, $param, "class='shrink'"); if (!$_GET['show'] == "all") { echo "". $text['label-detail_action'].""; @@ -266,14 +267,17 @@ echo " ".escape($domain)."\n"; } echo " ".escape($row['destination_type'])." \n"; - echo " "; + echo " ".escape($row['destination_prefix'])." \n"; + + echo " \n"; if (permission_exists('destination_edit')) { - echo "".escape(format_phone($row['destination_number'])).""; + echo " ".escape(format_phone($row['destination_number']))."\n"; } else { - echo escape(format_phone($row['destination_number'])); + echo " ".escape(format_phone($row['destination_number'])); } echo " \n"; + if (!$_GET['show'] == "all") { echo " ".action_name($destination_array, $row['destination_app'].':'.$row['destination_data'])." \n"; } @@ -308,4 +312,4 @@ //include the footer require_once "resources/footer.php"; -?> \ No newline at end of file +?>