diff options
author | Matthieu <alkahan@free.fr> | 2015-10-13 18:13:26 +0200 |
---|---|---|
committer | Matthieu <alkahan@free.fr> | 2015-10-13 18:13:26 +0200 |
commit | 2294c071a3077ce444767ab397323b5299c40e52 (patch) | |
tree | b2237f3624c4e24b997171b3bdf3e1c076c101f7 /inc/3rdparty/libraries | |
parent | f3192fc1d9f2d3f2856f4cd265dfa555d784ff4b (diff) | |
download | wallabag-2294c071a3077ce444767ab397323b5299c40e52.tar.gz wallabag-2294c071a3077ce444767ab397323b5299c40e52.tar.zst wallabag-2294c071a3077ce444767ab397323b5299c40e52.zip |
fix Content-Disposition header
Diffstat (limited to 'inc/3rdparty/libraries')
-rw-r--r-- | inc/3rdparty/libraries/PHPePub/Zip.php | 2 |
1 files changed, 1 insertions, 1 deletions
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 { | |||
569 | if ($inline) { | 569 | if ($inline) { |
570 | $cd .= "inline"; | 570 | $cd .= "inline"; |
571 | } else{ | 571 | } else{ |
572 | $cd .= "attached"; | 572 | $cd .= "attachment"; |
573 | } | 573 | } |
574 | if ($fileName) { | 574 | if ($fileName) { |
575 | $cd .= '; filename="' . $fileName . '"'; | 575 | $cd .= '; filename="' . $fileName . '"'; |