diff options
author | Jeremy Benoist <j0k3r@users.noreply.github.com> | 2015-10-13 18:53:02 +0200 |
---|---|---|
committer | Jeremy Benoist <j0k3r@users.noreply.github.com> | 2015-10-13 18:53:02 +0200 |
commit | 4e7c5db84a0c7399bebf7b9879e1fe9f06e554c5 (patch) | |
tree | b2237f3624c4e24b997171b3bdf3e1c076c101f7 | |
parent | f3192fc1d9f2d3f2856f4cd265dfa555d784ff4b (diff) | |
parent | 2294c071a3077ce444767ab397323b5299c40e52 (diff) | |
download | wallabag-4e7c5db84a0c7399bebf7b9879e1fe9f06e554c5.tar.gz wallabag-4e7c5db84a0c7399bebf7b9879e1fe9f06e554c5.tar.zst wallabag-4e7c5db84a0c7399bebf7b9879e1fe9f06e554c5.zip |
Merge pull request #1483 from alkahan/dev
Fix Content-Disposition header
-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 . '"'; |