the code in post 2 is tested in 2.2.6 and working ok.
If you have a different line all you have to do is to apply the hack like this:
PHP Code:
if ($thread['forumid']==27)
{
line without target=\"_blank\"
}
else
{
original line goes here.
}
so if your line is
PHP Code:
return "<a href=\"$righturl\" target=\"_blank\">".str_replace('\"', '"', $hyperlink)."</a>";
it should be changed as:
PHP Code:
if ($thread['forumid']==27)
{
return "<a href=\"$righturl\">".str_replace('\"', '"', $hyperlink)."</a>";
}
else
{
return "<a href=\"$righturl\" target=\"_blank\">".str_replace('\"', '"', $hyperlink)."</a>";
}
(also dont forget to add part: )
PHP Code:
global $bburl,$thread;