Topic: Open links in new windows
ok to end the debate i have been forced to release this mod, however i don't agree with it
open parser.php
find line 273
return '<a href="'.$full_url.'">'.$link.'</a>';
replace with
return '<a href="'.$full_url.'" onclick="window.open(this.href); return false;">'.$link.'</a>';
find line 284
$img_tag = '<a href="'.$url.'"><'.$lang_common['Image link'].'></a>';
replace with
$img_tag = '<a href="'.$url.'" onclick="window.open(this.href); return false;"><'.$lang_common['Image link'].'></a>';
i think thats it but i'm not sure, and its valid (even if its not really correct)