Index: trunk/phase3/includes/Linker.php |
— | — | @@ -1114,7 +1114,9 @@ |
1115 | 1115 | |
1116 | 1116 | $target = Title::newFromText( $linkTarget ); |
1117 | 1117 | if( $target ) { |
1118 | | - if( $target->getText() == '' && !$this->commentLocal && $this->commentContextTitle ) { |
| 1118 | + if( $target->getText() == '' && !$target->getInterwiki() === '' |
| 1119 | + && !$this->commentLocal && $this->commentContextTitle ) |
| 1120 | + { |
1119 | 1121 | $newTarget = clone( $this->commentContextTitle ); |
1120 | 1122 | $newTarget->setFragment( '#' . $target->getFragment() ); |
1121 | 1123 | $target = $newTarget; |
Index: trunk/phase3/RELEASE-NOTES |
— | — | @@ -133,6 +133,8 @@ |
134 | 134 | displayed on Special:Listusers. |
135 | 135 | * (bug 23313) Move watchlisthidepatrolled above token in watchlist preferences |
136 | 136 | to enhance preference grouping. |
| 137 | +* (bug 23298) Interwiki links with prefix only in log summaries now link to the |
| 138 | + correct link |
137 | 139 | |
138 | 140 | === API changes in 1.17 === |
139 | 141 | * (bug 22738) Allow filtering by action type on query=logevent |