From 91366eddc532d9e6ae88985f6d65370f27841de6 Mon Sep 17 00:00:00 2001 From: fusionate Date: Thu, 15 Jun 2023 22:23:44 +0000 Subject: [PATCH] Destinations - List: Fix Trunk Prefix and Area Code column headings. --- app/destinations/destinations.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/destinations/destinations.php b/app/destinations/destinations.php index 45c895d294..2cff3bf005 100644 --- a/app/destinations/destinations.php +++ b/app/destinations/destinations.php @@ -267,10 +267,10 @@ 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'"); if (permission_exists('destination_trunk_prefix')) { - echo th_order_by('destination_trunk_prefix', '', $order_by, $order, $param, "class='shrink'"); + echo th_order_by('destination_trunk_prefix', $text['label-destination_trunk_prefix'], $order_by, $order, $param, "class='shrink'"); } if (permission_exists('destination_area_code')) { - echo th_order_by('destination_area_code', '', $order_by, $order, $param, "class='shrink'"); + echo th_order_by('destination_area_code', $text['label-destination_area_code'], $order_by, $order, $param, "class='shrink'"); } echo th_order_by('destination_number', $text['label-destination_number'], $order_by, $order, $param, "class='shrink'"); if (!$show == "all") {