Index: trunk/phase3/includes/specials/SpecialExport.php |
— | — | @@ -216,6 +216,15 @@ |
217 | 217 | $request->wasPosted() ? $request->getCheck( 'wpDownload' ) : true |
218 | 218 | ) . '<br />'; |
219 | 219 | |
| 220 | + if ( $wgExportAllowListContributors ) { |
| 221 | + $form .= Xml::checkLabel( |
| 222 | + wfMsg( 'exportlistauthors' ), |
| 223 | + 'listauthors', |
| 224 | + 'listauthors', |
| 225 | + $request->wasPosted() ? $request->getCheck( 'listauthors' ) : false |
| 226 | + ) . '<br />'; |
| 227 | + } |
| 228 | + |
220 | 229 | $form .= Xml::submitButton( wfMsg( 'export-submit' ), Linker::tooltipAndAccesskeyAttribs( 'export' ) ); |
221 | 230 | $form .= Xml::closeElement( 'form' ); |
222 | 231 | |
Index: trunk/phase3/languages/messages/MessagesEn.php |
— | — | @@ -3278,6 +3278,7 @@ |
3279 | 3279 | 'exportcuronly' => 'Include only the current revision, not the full history', |
3280 | 3280 | 'exportnohistory' => "---- |
3281 | 3281 | '''Note:''' Exporting the full history of pages through this form has been disabled due to performance reasons.", |
| 3282 | +'exportlistauthors' => 'Include a full list of contributors for each page', |
3282 | 3283 | 'export-submit' => 'Export', |
3283 | 3284 | 'export-addcattext' => 'Add pages from category:', |
3284 | 3285 | 'export-addcat' => 'Add', |