From 5870ed41ee69093072eb255fc5b5581e9a92e31e Mon Sep 17 00:00:00 2001 From: Alexandre Emsenhuber Date: Thu, 26 Mar 2009 07:57:11 +0000 Subject: [PATCH] Use parsemag rather than parseinline since the content will be escaped by Xml::radioLabel(). This breaks French messages since something like "some text here :" will be converted to "some text here :" but Parser::parse() and then escape so the " " will be visible to the user --- includes/specials/SpecialContributions.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/specials/SpecialContributions.php b/includes/specials/SpecialContributions.php index 952a261a84..e6e263ca61 100644 --- a/includes/specials/SpecialContributions.php +++ b/includes/specials/SpecialContributions.php @@ -251,7 +251,7 @@ class SpecialContributions extends SpecialPage { Xml::element( 'legend', array(), wfMsg( 'sp-contributions-search' ) ) . Xml::radioLabel( wfMsgExt( 'sp-contributions-newbies', array( 'parseinline' ) ), 'contribs', 'newbie' , 'newbie', $this->opts['contribs'] == 'newbie' ? true : false ) . '
' . - Xml::radioLabel( wfMsgExt( 'sp-contributions-username', array( 'parseinline' ) ), + Xml::radioLabel( wfMsgExt( 'sp-contributions-username', array( 'parsemag' ) ), 'contribs' , 'user', 'user', $this->opts['contribs'] == 'user' ? true : false ) . ' ' . Xml::input( 'target', 20, $this->opts['target']) . ' '. '' . -- 2.20.1