Index: trunk/phase3/includes/specials/SpecialRecentchanges.php |
— | — | @@ -616,7 +616,12 @@ |
617 | 617 | * @param $opts FormOptions |
618 | 618 | */ |
619 | 619 | function setTopText( FormOptions $opts ) { |
620 | | - $this->getOutput()->addWikiText( wfMsgForContentNoTrans( 'recentchangestext' ) ); |
| 620 | + global $wgContLang; |
| 621 | + $this->getOutput()->addWikiText( |
| 622 | + Html::rawElement( 'p', |
| 623 | + array( 'lang' => $wgContLang->getCode(), 'dir' => $wgContLang->getDir() ), |
| 624 | + wfMsgForContentNoTrans( 'recentchangestext' ) |
| 625 | + ), false ); |
621 | 626 | } |
622 | 627 | |
623 | 628 | /** |