I guess you can make your own function if that is an internal function.
just change it to
PHP Code:
link_redirect($foruminfo['link']);
then add this in global
PHP Code:
function link_redirect($link)
{
global $foruminfo;
echo "<a href='$link' target='_blank'>".$foruminfo['name']."</a>";
}
I'm not sure "$foruminfo['name']" is correct.
I'm also not sure if that will work.