mirror of https://github.com/itflow-org/itflow
Fix issue with umlaught characters causing the contact name not to display properly in ticket details
This commit is contained in:
parent
ed9cb5c997
commit
d7ab2b2fec
|
|
@ -476,7 +476,7 @@ if (isset($_GET['ticket_id'])) {
|
||||||
<div>
|
<div>
|
||||||
<h4 class="text-secondary">Contact</h4>
|
<h4 class="text-secondary">Contact</h4>
|
||||||
<span class="">
|
<span class="">
|
||||||
<i class="fa fa-fw fa-user text-secondary ml-1 mr-2 mb-2"></i><a href="client_contact_details.php?client_id=<?php echo $client_id; ?>&contact_id=<?php echo $contact_id; ?>" class="text-dark"><strong><?php echo strtoupper($contact_name); ?></strong></a>
|
<i class="fa fa-fw fa-user text-secondary ml-1 mr-2 mb-2"></i><a href="client_contact_details.php?client_id=<?php echo $client_id; ?>&contact_id=<?php echo $contact_id; ?>" class="text-dark"><strong><?php echo $contact_name; ?></strong></a>
|
||||||
</span>
|
</span>
|
||||||
|
|
||||||
<span class="ml-1">
|
<span class="ml-1">
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue