From d35743a6aac8516cb52603d1f39c7530db7e896c Mon Sep 17 00:00:00 2001 From: Tim Starling Date: Wed, 7 Apr 2004 13:07:16 +0000 Subject: [PATCH] fixed minor bug in Skin.php which has been there forever -- link attributes of external links in Skin:makeLink() --- includes/Skin.php | 1 + 1 file changed, 1 insertion(+) 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 ); -- 2.20.1