fix Content-Disposition header

This commit is contained in:
Matthieu 2015-10-13 18:13:26 +02:00
parent f3192fc1d9
commit 2294c071a3

View file

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