In
/includes/Linker.php
Replace:
function getExternalLinkAttributes( $link, $text, $class='' ) { $link = htmlspecialchars( $link );
$r = ($class != '') ? " class="$class"" : " class="external"";
$r .= " title="{$link}""; return $r; }
With:
function getExternalLinkAttributes( $link, $text, $class='' ) { $link = htmlspecialchars( $link );
/* $r = ($class != '') ? " class="$class"" : " class="external"";*/
$r = ($class != '') ? " class='$class' target='_blank' " : " class='external' target='_blank' ";
$r .= " title="{$link}""; return $r; }
That does it.
Tim
......................................................... ! ............ ................................................. Tim Ware .. HyperArts .. 201 4th Street, Ste 404 .. Oakland CA 94607 t: (510) 339-6084 .. f: (510) 339-6086 .. e: tim@hyperarts.com http://www.hyperarts.com Map
mediawiki-l@lists.wikimedia.org