From: Tim Starling Date: Wed, 7 Apr 2004 13:07:16 +0000 (+0000) Subject: fixed minor bug in Skin.php which has been there forever -- link attributes of extern... X-Git-Tag: 1.3.0beta1~572 X-Git-Url: http://git.cyclocoop.org/wiki/%7B%7Bpath%7D%7Dmw-config/index.php?a=commitdiff_plain;h=d35743a6aac8516cb52603d1f39c7530db7e896c;p=lhc%2Fweb%2Fwiklou.git fixed minor bug in Skin.php which has been there forever -- link attributes of external links in Skin:makeLink() --- diff --git a/includes/Skin.php b/includes/Skin.php index aaeb80631d..21a35fd7cb 100644 --- a/includes/Skin.php +++ b/includes/Skin.php @@ -1305,6 +1305,7 @@ class Skin { global $wgOut, $wgUser; if ( $nt->isExternal() ) { $u = $nt->getFullURL(); + $link = $nt->getPrefixedURL(); if ( "" == $text ) { $text = $nt->getPrefixedText(); } $style = $this->getExternalLinkAttributes( $link, $text );