Index: trunk/phase3/includes/specials/SpecialEmailuser.php |
— | — | @@ -91,7 +91,7 @@ |
92 | 92 | $wgOut->addWikiMsg( "emailpagetext" ); |
93 | 93 | |
94 | 94 | if ( $this->subject === "" ) { |
95 | | - $this->subject = wfMsgForContent( "defemailsubject" ); |
| 95 | + $this->subject = wfMsgExt( 'defemailsubject', array( 'content', 'parsemag' ) ); |
96 | 96 | } |
97 | 97 | |
98 | 98 | $emf = wfMsg( "emailfrom" ); |
— | — | @@ -149,7 +149,8 @@ |
150 | 150 | $subject = $this->subject; |
151 | 151 | |
152 | 152 | // Add a standard footer |
153 | | - $this->text = $this->text . "\n ---- \n" . wfMsgForContent( 'emailuserfooter', array( $from->name, $to->name ) ); |
| 153 | + $this->text = $this->text . "\n ---- \n" . wfMsgExt( 'emailuserfooter', |
| 154 | + array( 'content', 'parsemag' ), array( $from->name, $to->name ) ); |
154 | 155 | |
155 | 156 | if( wfRunHooks( 'EmailUser', array( &$to, &$from, &$subject, &$this->text ) ) ) { |
156 | 157 | |