]> git.immae.eu Git - github/wallabag/wallabag.git/commitdiff
Merge pull request #1483 from alkahan/dev
authorJeremy Benoist <j0k3r@users.noreply.github.com>
Tue, 13 Oct 2015 16:53:02 +0000 (18:53 +0200)
committerJeremy Benoist <j0k3r@users.noreply.github.com>
Tue, 13 Oct 2015 16:53:02 +0000 (18:53 +0200)
Fix Content-Disposition header

inc/3rdparty/libraries/PHPePub/Zip.php

index 01e035662856f7da7b897493cc3aabee98e3631a..92e78e70351816de34d9ef1f833a09833adecdee 100644 (file)
@@ -569,7 +569,7 @@ class Zip {
                 if ($inline) {
                     $cd .= "inline";
                                } else{
-                    $cd .= "attached";
+                    $cd .= "attachment";
                                }
                 if ($fileName) {
                     $cd .= '; filename="' . $fileName . '"';