
Thank you so much

Moderator: mkoch227
Is this all that I would need to modify? Nothing seems to change.Klemen wrote:A working solution has been posted a few replies up.
This should also work: in inc/ticket_list.inc.php findJust ABOVE that code addCode: Select all
echo <<<EOC
Then the $ticket[owner] variable should display the name instead of number.Code: Select all
$ticket['owner'] = isset($admins[$ticket['owner']]) ? $admins[$ticket['owner']] : '<i>'.$hesklang['unas'].'</i>';
After it you need to change this line (in this functionfunction hesk_print_list_head())Add this:
This should also work: in inc/ticket_list.inc.php find
echo <<<EOC
Just ABOVE that code add
$ticket['owner'] = isset($admins[$ticket['owner']]) ? $admins[$ticket['owner']] : '<i>'.$hesklang['unas'].'</i>';
Then the $ticket[owner] variable should display the name instead of number
Save the script. Refresh the website and check if it also works for you...<th class="admin_white" style="text-align:center; white-space:nowrap;"><a href="<?php echo $href . '?' . $query . $sort_possible[owner] . '&sort='; ?>owner"><?php echo $hesklang[owner]; ?></a></th>
Hi, i added <td class="$color">$ticket[owner]</td> to ticket_list.inc.php . This add column which i need to ticket view .gurdain wrote:Ok done...went into /language/en/text.php
changed
$hesklang['owner']='Owner';
to
$hesklang['owner']='Assigned to';
Code: Select all
<th class="admin_white" style="text-align:center; white-space:nowrap;"><a href="<?php echo $href . '?' . $query . $sort_possible['owner'] . '&sort='; ?>lastreplier"><?php echo $hesklang['owner']; ?></a></th>