Index: trunk/phase3/includes/Linker.php |
— | — | @@ -553,7 +553,7 @@ |
554 | 554 | if ( isset( $frameParams['link-url'] ) && $frameParams['link-url'] !== '' ) { |
555 | 555 | $mtoParams['custom-url-link'] = $frameParams['link-url']; |
556 | 556 | } elseif ( isset( $frameParams['link-title'] ) && $frameParams['link-title'] !== '' ) { |
557 | | - $mtoParams['custom-title-link'] = $frameParams['link-title']; |
| 557 | + $mtoParams['custom-title-link'] = $this->normaliseSpecialPage( $frameParams['link-title'] ); |
558 | 558 | } elseif ( !empty( $frameParams['no-link'] ) ) { |
559 | 559 | // No link |
560 | 560 | } else { |
Index: trunk/phase3/RELEASE-NOTES |
— | — | @@ -408,6 +408,8 @@ |
409 | 409 | * (bug 25175) HTML file cache now honor $wgCacheDirectory if |
410 | 410 | $wgFileCacheDirectory is not set |
411 | 411 | * (bug 13353) Diff3 version checks were too strict, did not detect working diff3 |
| 412 | +* (bug 25843) Links to special pages using link= attribute on images are now |
| 413 | + normalised like normal links to special pages |
412 | 414 | |
413 | 415 | === API changes in 1.17 === |
414 | 416 | * (bug 22738) Allow filtering by action type on query=logevent. |