Index: trunk/phase3/includes/specials/SpecialAllpages.php |
— | — | @@ -27,7 +27,7 @@ |
28 | 28 | protected $nsfromMsg = 'allpagesfrom'; |
29 | 29 | |
30 | 30 | function __construct( $name = 'Allpages' ){ |
31 | | - parent::__construct( $name ); |
| 31 | + parent::__construct( $name ); |
32 | 32 | } |
33 | 33 | |
34 | 34 | /** |
Index: trunk/phase3/includes/specials/SpecialExport.php |
— | — | @@ -130,7 +130,7 @@ |
131 | 131 | return; |
132 | 132 | } |
133 | 133 | |
134 | | - $wgOut->addHTML( wfMsgExt( 'exporttext', 'parse' ) ); |
| 134 | + $wgOut->addWikiMsg( 'exporttext' ); |
135 | 135 | |
136 | 136 | $form = Xml::openElement( 'form', array( 'method' => 'post', |
137 | 137 | 'action' => $this->getTitle()->getLocalUrl( 'action=submit' ) ) ); |
Index: trunk/phase3/includes/specials/SpecialBlankpage.php |
— | — | @@ -2,5 +2,5 @@ |
3 | 3 | |
4 | 4 | function wfSpecialBlankpage() { |
5 | 5 | global $wgOut; |
6 | | - $wgOut->addHTML(wfMsg('intentionallyblankpage')); |
| 6 | + $wgOut->addWikiMsg('intentionallyblankpage'); |
7 | 7 | } |
Index: trunk/phase3/includes/specials/SpecialEmailuser.php |
— | — | @@ -241,7 +241,7 @@ |
242 | 242 | $user = $this->target; |
243 | 243 | |
244 | 244 | $wgOut->setPagetitle( wfMsg( "emailsent" ) ); |
245 | | - $wgOut->addHTML( wfMsg( "emailsenttext" ) ); |
| 245 | + $wgOut->addWikiMsg( 'emailsenttext' ); |
246 | 246 | |
247 | 247 | $wgOut->returnToMain( false, $user->getUserPage() ); |
248 | 248 | } |