]> git.p6c8.net - jirafeau.git/commitdiff
f.php fix bad file name when browser cannot preview file
authorJerome Jutteau <mojo@couak.net>
Mon, 23 Mar 2015 12:48:49 +0000 (13:48 +0100)
committerJerome Jutteau <mojo@couak.net>
Mon, 23 Mar 2015 12:48:49 +0000 (13:48 +0100)
This permits to have the original file name when browser force user
to download the file because he cannot preview it. closes #24

f.php

diff --git a/f.php b/f.php
index e1c858e379a01e9886f0609841c58b0b99ac7671..9bbe4d9abddf57db07a5577b92cb8ff1ba72bad8 100644 (file)
--- a/f.php
+++ b/f.php
@@ -220,8 +220,9 @@ if ($cfg['download_page'] && !$password_challenged && !$do_download && !$do_prev
 header ('HTTP/1.0 200 OK');
 header ('Content-Length: ' . $link['file_size']);
 if (!jirafeau_is_viewable ($link['mime_type']) || !$cfg['preview'] || $do_download)
-    header ('Content-Disposition: attachment; filename="' .
-        $link['file_name'] . '"');
+    header ('Content-Disposition: attachment; filename="' . $link['file_name'] . '"');
+else
+    header ('Content-Disposition: filename="' . $link['file_name'] . '"');
 header ('Content-Type: ' . $link['mime_type']);
 
 /* Read encrypted file. */

patrick-canterino.de