Remove the ucwords for the domain name as its not used anywhere else.
This commit is contained in:
parent
d5ac3009a5
commit
55b74bfd72
|
|
@ -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";
|
||||
|
|
|
|||
Loading…
Reference in New Issue