Index: trunk/extensions/Deployment/specials/SpecialExtensions.php |
— | — | @@ -72,7 +72,7 @@ |
73 | 73 | } |
74 | 74 | else { |
75 | 75 | // TODO: fix url |
76 | | - $wgOut->addWikiMsgArray( 'extension-page-explanation', '' ); |
| 76 | + $wgOut->addWikiMsg( 'extension-page-explanation' ); |
77 | 77 | } |
78 | 78 | |
79 | 79 | $wgOut->addHTML( |
— | — | @@ -185,7 +185,7 @@ |
186 | 186 | global $wgOut, $wgExtensionCredits; |
187 | 187 | |
188 | 188 | if ( !array_key_exists( $this->typeFilter, $wgExtensionCredits ) && $this->typeFilter != 'all' ) { |
189 | | - $wgOut->addWikiMsgArray( 'extension-invalid-category', $this->typeFilter ); |
| 189 | + $wgOut->addWikiMsg( 'extension-invalid-category', $this->typeFilter ); |
190 | 190 | $this->typeFilter = 'all'; |
191 | 191 | } |
192 | 192 | |
— | — | @@ -202,10 +202,10 @@ |
203 | 203 | |
204 | 204 | if ( count( $extensions ) == 0 ) { |
205 | 205 | if ( $this->typeFilter == 'all' ) { |
206 | | - $wgOut->addWikiMsgArray( 'extension-none-installed', 'Special:Install' ); |
| 206 | + $wgOut->addWikiMsg( 'extension-none-installed', 'Special:Install' ); |
207 | 207 | } |
208 | 208 | else { |
209 | | - $wgOut->addWikiMsgArray( 'extension-empty-category', $this->typeFilter ); |
| 209 | + $wgOut->addWikiMsg( 'extension-empty-category', $this->typeFilter ); |
210 | 210 | } |
211 | 211 | } |
212 | 212 | else { |
— | — | @@ -315,4 +315,4 @@ |
316 | 316 | return $html; |
317 | 317 | } |
318 | 318 | |
319 | | -} |
\ No newline at end of file |
| 319 | +} |
Index: trunk/extensions/Deployment/specials/SpecialUpdate.php |
— | — | @@ -94,7 +94,7 @@ |
95 | 95 | else { |
96 | 96 | $wgOut->addHTML( '<h3>' . wfMsg( 'mediawiki-update-available' ) . '</h3>' ); |
97 | 97 | // TODO: link |
98 | | - $wgOut->addWikiMsgArray( 'mediawiki-update-available-long', array( $status, '' ) ); |
| 98 | + $wgOut->addWikiMsg( 'mediawiki-update-available-long', $status, '' ); |
99 | 99 | } |
100 | 100 | } |
101 | 101 | |
— | — | @@ -185,4 +185,4 @@ |
186 | 186 | ); |
187 | 187 | } |
188 | 188 | |
189 | | -} |
\ No newline at end of file |
| 189 | +} |
Index: trunk/extensions/Deployment/specials/SpecialInstall.php |
— | — | @@ -70,7 +70,7 @@ |
71 | 71 | protected function showFullSearchOptions() { |
72 | 72 | global $wgOut, $wgUser, $wgRepositoryLocation; |
73 | 73 | |
74 | | - $wgOut->addWikiMsgArray( 'extensions-description', $wgRepositoryLocation ); |
| 74 | + $wgOut->addWikiMsg( 'extensions-description', $wgRepositoryLocation ); |
75 | 75 | |
76 | 76 | $searchHtml = Html::element( 'h2', array(), wfMsg( 'search-extensions' ) ); |
77 | 77 | $searchHtml .= wfMsg( 'search-extensions-long' ); |
— | — | @@ -256,4 +256,4 @@ |
257 | 257 | return $html . '</tr>'; |
258 | 258 | } |
259 | 259 | |
260 | | -} |
\ No newline at end of file |
| 260 | +} |