Page 1 of 1

custom fields as links

Posted: Wed May 02, 2007 10:04 pm
by Nutkayz
Script URL:
Version of script:0.94
Hosting company:
URL of phpinfo.php:
URL of session_test.php:
What terms did you try when SEARCHING for a solution:

Write your message below:

hello.. i think the custom fields are great however.. i am using one as a url slot.. and im unsure of how i could make it linkable so that when i read it from the customer its a link and not just text

Posted: Thu May 03, 2007 2:53 pm
by Klemen
You can use the hesk_makeUrl function to do that.

Open admin_ticket.php, find line 223

Code: Select all

if ($v['use']) {
and change it to

Code: Select all

if ($v['use']) {
$ticket[$k]=hesk_makeURL($ticket[$k]);
That should do the trick. You can do the same in file ticket.php so the customer has clickable links as well.

Posted: Thu May 03, 2007 10:13 pm
by Nutkayz
thank you very much...

worked perfect :D