From f71c059f88744340adb71750c1eeebddfa15fd4f Mon Sep 17 00:00:00 2001 From: FusionPBX Date: Thu, 23 Aug 2018 11:20:14 -0600 Subject: [PATCH] Update destinations.php --- app/destinations/destinations.php | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/app/destinations/destinations.php b/app/destinations/destinations.php index b08b6b5db9..40e3948028 100644 --- a/app/destinations/destinations.php +++ b/app/destinations/destinations.php @@ -224,15 +224,15 @@ if ($_GET['show'] == "all" && permission_exists('destination_all')) { echo th_order_by('domain_name', $text['label-domain'], $order_by, $order, $param); } - echo th_order_by('destination_type', $text['label-destination_type'], $order_by, $order); - echo th_order_by('destination_number', $text['label-destination_number'], $order_by, $order); - echo th_order_by('destination_context', $text['label-destination_context'], $order_by, $order); + 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_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); - echo th_order_by('destination_caller_id_number', $text['label-destination_caller_id_number'], $order_by, $order); + 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); } - echo th_order_by('destination_enabled', $text['label-destination_enabled'], $order_by, $order); - echo th_order_by('destination_description', $text['label-destination_description'], $order_by, $order); + echo th_order_by('destination_enabled', $text['label-destination_enabled'], $order_by, $order, $param); + echo th_order_by('destination_description', $text['label-destination_description'], $order_by, $order, $param); echo " "; if (permission_exists('destination_add')) { echo " $v_link_label_add";