Merge pull request #1483 from alkahan/dev

Fix Content-Disposition header
This commit is contained in:
Jeremy Benoist 2015-10-13 18:53:02 +02:00
commit 4e7c5db84a

View file

@ -569,7 +569,7 @@ class Zip {
if ($inline) {
$cd .= "inline";
} else{
$cd .= "attached";
$cd .= "attachment";
}
if ($fileName) {
$cd .= '; filename="' . $fileName . '"';