From 2294c071a3077ce444767ab397323b5299c40e52 Mon Sep 17 00:00:00 2001 From: Matthieu Date: Tue, 13 Oct 2015 18:13:26 +0200 Subject: fix Content-Disposition header --- inc/3rdparty/libraries/PHPePub/Zip.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/inc/3rdparty/libraries/PHPePub/Zip.php b/inc/3rdparty/libraries/PHPePub/Zip.php index 01e03566..92e78e70 100644 --- a/inc/3rdparty/libraries/PHPePub/Zip.php +++ b/inc/3rdparty/libraries/PHPePub/Zip.php @@ -569,7 +569,7 @@ class Zip { if ($inline) { $cd .= "inline"; } else{ - $cd .= "attached"; + $cd .= "attachment"; } if ($fileName) { $cd .= '; filename="' . $fileName . '"'; -- cgit v1.2.3