custom fields as links

Helpdesk for my helpdesk software

Moderator: mkoch227

Post Reply
Nutkayz
Posts: 2
Joined: Thu Sep 14, 2006 2:00 pm

custom fields as links

Post 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
Klemen
Site Admin
Posts: 10141
Joined: Fri Feb 11, 2005 4:04 pm

Post 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.
Klemen, creator of HESK and PHPJunkyardWas this helpful? You can buy me a drink here Image

Image You should follow me on Twitter here

Help desk software | Cloud help desk | Guestbook | Link manager | Click counter | more PHP Scripts ...

Also browse for php hosting companies, read php books, find php resources and use webmaster tools
Nutkayz
Posts: 2
Joined: Thu Sep 14, 2006 2:00 pm

Post by Nutkayz »

thank you very much...

worked perfect :D
Post Reply