Index: trunk/phase3/includes/SpecialDisambiguations.php |
— | — | @@ -15,8 +15,7 @@ |
16 | 16 | |
17 | 17 | |
18 | 18 | function getPageHeader( ) { |
19 | | - global $wgOut; |
20 | | - return $wgOut->parse( wfMsg( 'disambiguations-text' ) ); |
| 19 | + return wfMsgExt( 'disambiguations-text', array( 'parse' ) ); |
21 | 20 | } |
22 | 21 | |
23 | 22 | function getSQL() { |
Index: trunk/phase3/includes/SpecialLonelypages.php |
— | — | @@ -15,7 +15,7 @@ |
16 | 16 | return "Lonelypages"; |
17 | 17 | } |
18 | 18 | function getPageHeader() { |
19 | | - return '<p>' . wfMsg('lonelypagestext') . '</p>'; |
| 19 | + return wfMsgExt( 'lonelypagestext', array( 'parse' ) ); |
20 | 20 | } |
21 | 21 | |
22 | 22 | function sortDescending() { |
Index: trunk/phase3/includes/SpecialUnusedcategories.php |
— | — | @@ -15,7 +15,7 @@ |
16 | 16 | } |
17 | 17 | |
18 | 18 | function getPageHeader() { |
19 | | - return '<p>' . wfMsg('unusedcategoriestext') . '</p>'; |
| 19 | + return wfMsgExt( 'unusedcategoriestext', array( 'parse' ) ); |
20 | 20 | } |
21 | 21 | |
22 | 22 | function getSQL() { |
Index: trunk/phase3/includes/SpecialDoubleRedirects.php |
— | — | @@ -19,8 +19,7 @@ |
20 | 20 | function isSyndicated() { return false; } |
21 | 21 | |
22 | 22 | function getPageHeader( ) { |
23 | | - #FIXME : probably need to add a backlink to the maintenance page. |
24 | | - return '<p>'.wfMsg("doubleredirectstext")."</p><br />\n"; |
| 23 | + return wfMsgExt( 'doubleredirectstext', array( 'parse' ) ); |
25 | 24 | } |
26 | 25 | |
27 | 26 | function getSQLText( &$dbr, $namespace = null, $title = null ) { |
Index: trunk/phase3/includes/SpecialBrokenRedirects.php |
— | — | @@ -20,8 +20,7 @@ |
21 | 21 | function isSyndicated() { return false; } |
22 | 22 | |
23 | 23 | function getPageHeader( ) { |
24 | | - global $wgOut; |
25 | | - return $wgOut->parse( wfMsg( 'brokenredirectstext' ) ); |
| 24 | + return wfMsgExt( 'brokenredirectstext', array( 'parse' ) ); |
26 | 25 | } |
27 | 26 | |
28 | 27 | function getSQL() { |
Index: trunk/phase3/includes/SpecialUnusedtemplates.php |
— | — | @@ -37,8 +37,7 @@ |
38 | 38 | } |
39 | 39 | |
40 | 40 | function getPageHeader() { |
41 | | - global $wgOut; |
42 | | - return $wgOut->parse( wfMsg( 'unusedtemplatestext' ) ); |
| 41 | + return wfMsgExt( 'unusedtemplatestext', array( 'parse' ) ); |
43 | 42 | } |
44 | 43 | |
45 | 44 | } |
Index: trunk/phase3/includes/SpecialDeadendpages.php |
— | — | @@ -15,7 +15,7 @@ |
16 | 16 | } |
17 | 17 | |
18 | 18 | function getPageHeader() { |
19 | | - return '<p>' . wfMsg('deadendpagestext') . '</p>'; |
| 19 | + return wfMsgExt( 'deadendpagestext', array( 'parse' ) ); |
20 | 20 | } |
21 | 21 | |
22 | 22 | /** |
Index: trunk/phase3/languages/messages/MessagesEn.php |
— | — | @@ -364,7 +364,7 @@ |
365 | 365 | 'Listusers' => array( 'Listusers', 'Userlist' ), |
366 | 366 | 'Statistics' => array( 'Statistics' ), |
367 | 367 | 'Randompage' => array( 'Random', 'Randompage' ), |
368 | | - 'Lonelypages' => array( 'Lonelypages' ), |
| 368 | + 'Lonelypages' => array( 'Lonelypages', 'Orphanedpages' ), |
369 | 369 | 'Uncategorizedpages' => array( 'Uncategorizedpages' ), |
370 | 370 | 'Uncategorizedcategories' => array( 'Uncategorizedcategories' ), |
371 | 371 | 'Uncategorizedimages' => array( 'Uncategorizedimages' ), |
Index: trunk/phase3/RELEASE-NOTES |
— | — | @@ -87,7 +87,8 @@ |
88 | 88 | * On reupload, add a null revision to the image description page |
89 | 89 | * Group log output by date |
90 | 90 | * Kurdish interface latin/arabic writing system with transliteration |
91 | | -* Allow wikilinks in header of Special:Withoutinterwiki |
| 91 | +* Support wiki text in all query page headers |
| 92 | +* Add 'Orphanedpages' as an alias to Special:Lonelypages |
92 | 93 | |
93 | 94 | == Bugfixes since 1.10 == |
94 | 95 | |