Index: trunk/phase3/includes/Skin.php |
— | — | @@ -1156,7 +1156,7 @@ |
1157 | 1157 | |
1158 | 1158 | // Parser::getExternalLinkAttribs won't work here because of the Namespace things |
1159 | 1159 | global $wgNoFollowLinks, $wgNoFollowDomainExceptions; |
1160 | | - if ( $wgNoFollowLinks && !wfMatchesDomainList( $url, $wgNoFollowDomainExceptions ) ) { |
| 1160 | + if ( $wgNoFollowLinks && !wfMatchesDomainList( $href, $wgNoFollowDomainExceptions ) ) { |
1161 | 1161 | $extraAttribs['rel'] = 'nofollow'; |
1162 | 1162 | } |
1163 | 1163 | |