Search Help

Helpdesk for my helpdesk software

Moderator: mkoch227

Post Reply
Triton
Posts: 2
Joined: Tue Feb 11, 2014 7:38 pm

Search Help

Post by Triton »

I am running HESK on it's own server and use an Iframe to embed it on a site hosted elsewhere. All links work great when clicked except when someone searches help and and clicks the suggested article. It then opens the article in a new tab instead of loading it in the iframe. Is there a way to keep it contained? Thanks for any help!
Triton
Posts: 2
Joined: Tue Feb 11, 2014 7:38 pm

Re: Search Help

Post by Triton »

Okay, I figured it out! In suggest_articles.php, i changed

Code: Select all

<a href="knowledgebase.php?article='.$article['id'].'&suggest=1" target="_top">'.$article['subject'].'</a>
to

Code: Select all

<a href="knowledgebase.php?article='.$article['id'].'&suggest=1" target="_self">'.$article['subject'].'</a>
Post Reply