Index: trunk/phase3/includes/specials/SpecialContributions.php |
— | — | @@ -52,7 +52,7 @@ |
53 | 53 | if( $target != 'newbies' ) { |
54 | 54 | $target = $nt->getText(); |
55 | 55 | $wgOut->setSubtitle( $this->contributionsSub( $nt, $id ) ); |
56 | | - $wgOut->setHTMLTitle( wfMsg( 'pagetitle', wfMsg( 'contributions-title', $target ) ) ); |
| 56 | + $wgOut->setHTMLTitle( wfMsg( 'pagetitle', wfMsgExt( 'contributions-title', array( 'parsemag' ),$target ) ) ); |
57 | 57 | } else { |
58 | 58 | $wgOut->setSubtitle( wfMsgHtml( 'sp-contributions-newbies-sub') ); |
59 | 59 | $wgOut->setHTMLTitle( wfMsg( 'pagetitle', wfMsg( 'sp-contributions-newbies-title' ) ) ); |
Index: trunk/phase3/includes/specials/SpecialDeletedContributions.php |
— | — | @@ -204,7 +204,7 @@ |
205 | 205 | |
206 | 206 | global $wgUser, $wgOut, $wgLang, $wgRequest; |
207 | 207 | |
208 | | - $wgOut->setPageTitle( wfMsg( 'deletedcontributions-title' ) ); |
| 208 | + $wgOut->setPageTitle( wfMsgExt( 'deletedcontributions-title', array( 'parsemag' ) ) ); |
209 | 209 | |
210 | 210 | $options = array(); |
211 | 211 | |
Index: trunk/phase3/RELEASE-NOTES |
— | — | @@ -86,6 +86,7 @@ |
87 | 87 | * Treat svn:// URLs as external links by default |
88 | 88 | * New function to convert namespace text for display (only applies on wiki with |
89 | 89 | LanguageConverter class) |
| 90 | +* (bug 17379) Contributions-title is now parsed for magic words. |
90 | 91 | |
91 | 92 | === Bug fixes in 1.15 === |
92 | 93 | * (bug 16968) Special:Upload no longer throws useless warnings. |