]> git.p6c8.net - jirafeau.git/blobdiff - f.php
media/courgette: fix borders in install
[jirafeau.git] / f.php
diff --git a/f.php b/f.php
index e1c858e379a01e9886f0609841c58b0b99ac7671..0797c40e4ad469f1cb44640f6c5e9fff02b6db7a 100644 (file)
--- a/f.php
+++ b/f.php
@@ -198,7 +198,7 @@ if ($cfg['download_page'] && !$password_challenged && !$do_download && !$do_prev
         if (!empty($crypt_key))
             echo '&k=' . urlencode($crypt_key);
 ?>';
-        document.getElementById('submit_download').submit ();"/><?php
+        document.getElementById('submit_post').submit ();"/><?php
 
         if ($cfg['download_page'] && $cfg['preview'] && jirafeau_is_viewable($link['mime_type']))
         {
@@ -209,7 +209,7 @@ if ($cfg['download_page'] && !$password_challenged && !$do_download && !$do_prev
         if (!empty($crypt_key))
             echo '&amp;k=' . urlencode($crypt_key);
 ?>';
-        document.getElementById('submit_preview').submit ();"/><?php
+        document.getElementById('submit_post').submit ();"/><?php
         }
         echo '</td></tr>';
         echo '</table></fieldset></form></div>';
@@ -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