kartik-v / yii2-mpdf

A Yii2 wrapper component for the mPDF library which generates PDF files from UTF-8 encoded HTML.
http://demos.krajee.com/mpdf
Other
161 stars 150 forks source link

Fix: Headers already sent for "Download" and "Browser" destination #77

Closed i-lie closed 6 years ago

i-lie commented 6 years ago

Scope

This pull request includes a

Changes

Related Issues

issue #70

razvanphp commented 6 years ago

This PR misses an important and required change for this to work:

Yii::$app->response->format = \yii\web\Response::FORMAT_RAW;

... otherwise the Content-Type header will be overwritten.

Also, the added code should be aligned properly.