X-Git-Url: https://git.heureux-cyclage.org/?a=blobdiff_plain;f=includes%2Fspecials%2FSpecialContributions.php;h=5b939efbeeff7ee25acfda39eca820c67e10ef19;hb=0770f85a0a293e6c7af6f1d3d3a1dbd2d13c1e09;hp=63b64eab5bad1304ea64a00bced6643f7ec8c681;hpb=e165d88ae298f699448a246daaa6c4ef127ef022;p=lhc%2Fweb%2Fwiklou.git diff --git a/includes/specials/SpecialContributions.php b/includes/specials/SpecialContributions.php index 63b64eab5b..5b939efbee 100644 --- a/includes/specials/SpecialContributions.php +++ b/includes/specials/SpecialContributions.php @@ -607,7 +607,7 @@ class SpecialContributions extends IncludableSpecialPage { '' ) . "\u{00A0}" . Html::namespaceSelector( - [ 'selected' => $this->opts['namespace'], 'all' => '' ], + [ 'selected' => $this->opts['namespace'], 'all' => '', 'in-user-lang' => true ], [ 'name' => 'namespace', 'id' => 'namespace', @@ -744,7 +744,9 @@ class SpecialContributions extends IncludableSpecialPage { $explain = $this->msg( 'sp-contributions-explain' ); if ( !$explain->isBlank() ) { - $form .= "

{$explain->parse()}

"; + $form .= Html::rawElement( + 'p', [ 'id' => 'mw-sp-contributions-explain' ], $explain->parse() + ); } $form .= Xml::closeElement( 'form' );