Index: trunk/phase3/RELEASE-NOTES-1.19 |
— | — | @@ -117,6 +117,7 @@ |
118 | 118 | * Extensions can use the RequestContextCreateSkin hook to override what skin is |
119 | 119 | loaded in some contexts. |
120 | 120 | * (bug 33456) Show $wgQueryCacheLimit on cached query pages. |
| 121 | +* (bug 10574) Add an option to allow all pages to be exported by Special:Export. |
121 | 122 | |
122 | 123 | === Bug fixes in 1.19 === |
123 | 124 | * $wgUploadNavigationUrl should be used for file redlinks if. |
Index: trunk/phase3/includes/specials/SpecialExport.php |
— | — | @@ -264,7 +264,7 @@ |
265 | 265 | private function doExport( $page, $history, $list_authors, $exportall ) { |
266 | 266 | |
267 | 267 | // If we are grabbing everything, enable full history and ignore the rest |
268 | | - if ($exportall) { |
| 268 | + if ( $exportall ) { |
269 | 269 | $history = WikiExporter::FULL; |
270 | 270 | } else { |
271 | 271 | |
— | — | @@ -310,7 +310,7 @@ |
311 | 311 | } |
312 | 312 | |
313 | 313 | /* Ok, let's get to it... */ |
314 | | - if( $history == WikiExporter::CURRENT && ! $exportall ) { |
| 314 | + if( $history == WikiExporter::CURRENT ) { |
315 | 315 | $lb = false; |
316 | 316 | $db = wfGetDB( DB_SLAVE ); |
317 | 317 | $buffer = WikiExporter::BUFFER; |
Index: trunk/phase3/languages/messages/MessagesQqq.php |
— | — | @@ -2983,6 +2983,7 @@ |
2984 | 2984 | # Export |
2985 | 2985 | 'export' => 'Page title of [[Special:Export]], a page where a user can export pages from a wiki to a file.', |
2986 | 2986 | 'exporttext' => 'Main text on [[Special:Export]]. Leave the line <tt><nowiki>[[{{#Special:Export}}/{{MediaWiki:Mainpage}}]]</nowiki></tt> exactly as it is!', |
| 2987 | +'exportall' => 'A label of checkbox option in [[Special:Export]]', |
2987 | 2988 | 'exportcuronly' => 'A label of checkbox option in [[Special:Export]]', |
2988 | 2989 | 'export-submit' => 'Button name in [[Special:Export]]. |
2989 | 2990 | |