Index: trunk/phase3/maintenance/parserTests.txt |
— | — | @@ -1070,6 +1070,15 @@ |
1071 | 1071 | !! end |
1072 | 1072 | |
1073 | 1073 | !! test |
| 1074 | +Inline interwiki link with empty title (bug 2372) |
| 1075 | +!! input |
| 1076 | +[[MeatBall:]] |
| 1077 | +!! result |
| 1078 | +<p><a href="http://www.usemod.com/cgi-bin/mb.pl?" class='extiw' title="MeatBall:">MeatBall:</a> |
| 1079 | +</p> |
| 1080 | +!! end |
| 1081 | + |
| 1082 | +!! test |
1074 | 1083 | Interwiki link encoding conversion (bug 1636) |
1075 | 1084 | !! input |
1076 | 1085 | *[[Wikipedia:ro:Olteniţa]] |
Index: trunk/phase3/includes/Parser.php |
— | — | @@ -1433,7 +1433,13 @@ |
1434 | 1434 | $s .= $prefix . $sk->makeKnownLinkObj( $nt, $text, '', $trail ); |
1435 | 1435 | continue; |
1436 | 1436 | } |
1437 | | - if ( $nt->isAlwaysKnown() ) { |
| 1437 | + if( $nt->isLocal() && $nt->isAlwaysKnown() ) { |
| 1438 | + /** |
| 1439 | + * Skip lookups for special pages and self-links. |
| 1440 | + * External interwiki links are not included here because |
| 1441 | + * the HTTP urls would break output in the next parse step; |
| 1442 | + * they will have placeholders kept. |
| 1443 | + */ |
1438 | 1444 | $s .= $sk->makeKnownLinkObj( $nt, $text, '', $trail, $prefix ); |
1439 | 1445 | } else { |
1440 | 1446 | /** |
Index: trunk/phase3/includes/Title.php |
— | — | @@ -1969,7 +1969,7 @@ |
1970 | 1970 | * |
1971 | 1971 | */ |
1972 | 1972 | function isAlwaysKnown() { |
1973 | | - return ( 0 == $this->mNamespace && "" == $this->mDbkeyform ) |
| 1973 | + return $this->isExternal() || ( 0 == $this->mNamespace && "" == $this->mDbkeyform ) |
1974 | 1974 | || NS_SPECIAL == $this->mNamespace || NS_IMAGE == $this->mNamespace; |
1975 | 1975 | } |
1976 | 1976 | |
Index: trunk/phase3/RELEASE-NOTES |
— | — | @@ -275,6 +275,7 @@ |
276 | 276 | * Changed user_groups format quite a bit. |
277 | 277 | * (bug 2368) Avoid fatally breaking PHP 4.1.2 in a debug line |
278 | 278 | * (bug 2367) Insert correct redirect link record on page move |
| 279 | +* (bug 2372) Fix rendering of empty-title inline interwiki links |
279 | 280 | |
280 | 281 | |
281 | 282 | === Caveats === |