Does anyone know how to make the links page open up the links into another browser window I know how to do this with HTML but not in Boonex target="_blank"
Thank you
Does anyone know how to make the links page open up the links into another browser window I know how to do this with HTML but not in Boonex target="_blank" Thank you |
This is very easy,
open links.php (root)
Find this code/line: $out .= "<a href=\"$link_url\">$link_title</a></div>\n";
$out .= "<a href=\"$link_url\" target=\"_blank\">$link_title</a></div>\n";
Cheers |