Index: trunk/phase3/includes/specials/SpecialWhatlinkshere.php |
— | — | @@ -316,12 +316,12 @@ |
317 | 317 | $props[] = $msgcache['isimage']; |
318 | 318 | |
319 | 319 | if ( count( $props ) ) { |
320 | | - $propsText = wfMessage( 'parentheses' )->rawParams( implode( $msgcache['semicolon-separator'], $props ) )->escaped(); |
| 320 | + $propsText = $this->msg( 'parentheses' )->rawParams( implode( $msgcache['semicolon-separator'], $props ) )->escaped(); |
321 | 321 | } |
322 | 322 | |
323 | 323 | # Space for utilities links, with a what-links-here link provided |
324 | 324 | $wlhLink = $this->wlhLink( $nt, $msgcache['whatlinkshere-links'] ); |
325 | | - $wlh = Xml::wrapClass( wfMessage( 'parentheses' )->rawParams( $wlhLink )->escaped(), 'mw-whatlinkshere-tools' ); |
| 325 | + $wlh = Xml::wrapClass( $this->msg( 'parentheses' )->rawParams( $wlhLink )->escaped(), 'mw-whatlinkshere-tools' ); |
326 | 326 | |
327 | 327 | return $notClose ? |
328 | 328 | Xml::openElement( 'li' ) . "$link $propsText $dirmark $wlh\n" : |
Index: trunk/phase3/includes/specials/SpecialShortpages.php |
— | — | @@ -95,7 +95,7 @@ |
96 | 96 | : Linker::linkKnown( $title ); |
97 | 97 | $size = $this->msg( 'nbytes' )->numParams( $result->value )->escaped(); |
98 | 98 | |
99 | | - $hlinkInParentheses = wfMessage( 'parentheses' )->rawParams( $hlink )->escaped(); |
| 99 | + $hlinkInParentheses = $this->msg( 'parentheses' )->rawParams( $hlink )->escaped(); |
100 | 100 | |
101 | 101 | return $title->exists() |
102 | 102 | ? "${hlinkInParentheses} {$dm}{$plink} {$dm}[{$size}]" |
Index: trunk/phase3/includes/specials/SpecialProtectedpages.php |
— | — | @@ -137,7 +137,7 @@ |
138 | 138 | ); |
139 | 139 | } |
140 | 140 | |
141 | | - $changeProtection = ' ' . wfMessage( 'parentheses' )->rawParams( $changeProtection )->escaped(); |
| 141 | + $changeProtection = ' ' . $this->msg( 'parentheses' )->rawParams( $changeProtection )->escaped(); |
142 | 142 | |
143 | 143 | wfProfileOut( __METHOD__ ); |
144 | 144 | |