From 55b74bfd72d14113e34a2d7c6c91cc0d75933de5 Mon Sep 17 00:00:00 2001 From: Mark Crane Date: Sat, 7 Mar 2015 13:04:33 +0000 Subject: [PATCH] Remove the ucwords for the domain name as its not used anywhere else. --- app/destinations/destinations.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/destinations/destinations.php b/app/destinations/destinations.php index 900714e1d0..3717320bfb 100644 --- a/app/destinations/destinations.php +++ b/app/destinations/destinations.php @@ -167,7 +167,7 @@ else { $tr_link = "href='destination_edit.php?id=".$row['destination_uuid']."'"; echo "\n"; if ($_GET['showall'] && permission_exists('destination_show_all')) { - echo " ".ucwords($row['domain_name'])."\n"; + echo " ".$row['domain_name']."\n"; } echo " ".ucwords($row['destination_type'])."\n"; echo " ".$row['destination_number']."\n";