Remove the ucwords for the domain name as its not used anywhere else.

This commit is contained in:
Mark Crane 2015-03-07 13:04:33 +00:00
parent d5ac3009a5
commit 55b74bfd72
1 changed files with 1 additions and 1 deletions

View File

@ -167,7 +167,7 @@ else {
$tr_link = "href='destination_edit.php?id=".$row['destination_uuid']."'";
echo "<tr ".$tr_link.">\n";
if ($_GET['showall'] && permission_exists('destination_show_all')) {
echo " <td valign='top' class='".$row_style[$c]."'>".ucwords($row['domain_name'])."</td>\n";
echo " <td valign='top' class='".$row_style[$c]."'>".$row['domain_name']."</td>\n";
}
echo " <td valign='top' class='".$row_style[$c]."'>".ucwords($row['destination_type'])."</td>\n";
echo " <td valign='top' class='".$row_style[$c]."'><a href='destination_edit.php?id=".$row['destination_uuid']."'>".$row['destination_number']."</a></td>\n";