Index: trunk/extensions/Collection/Collection.body.php |
— | — | @@ -573,10 +573,11 @@ |
574 | 574 | // Cancel output buffering and gzipping if set |
575 | 575 | wfResetOutputBuffers(); |
576 | 576 | |
577 | | - header("Content-type: application/pdf"); |
578 | | - header( "Content-Disposition: inline;filename=mw.pdf" ); |
| 577 | + header( 'Content-type: application/pdf'); |
| 578 | + header( 'Content-Disposition: inline;filename=mw.pdf' ); |
579 | 579 | header( 'Content-Length: ' . strlen( $response ) ); |
580 | 580 | print $response; |
| 581 | + $wgOut->disable(); |
581 | 582 | } |
582 | 583 | |
583 | 584 | function generatePDF() { |