f.php fix bad file name when browser cannot preview file

This permits to have the original file name when browser force user
to download the file because he cannot preview it. closes #24
This commit is contained in:
Jerome Jutteau 2015-03-23 13:48:49 +01:00
parent a41981033b
commit a80b0189a7

5
f.php
View File

@ -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. */