]> git.p6c8.net - jirafeau_mojo42.git/blobdiff - f.php
Closes #4 Remove block feature
[jirafeau_mojo42.git] / f.php
diff --git a/f.php b/f.php
index 2a5a6dad35b68a786ff85540df7af799fc772e52..7faf028fce49f8fb49c0504ef5cd6b1e1f6db945 100644 (file)
--- a/f.php
+++ b/f.php
@@ -33,7 +33,9 @@ if (!isset ($_GET['h']) || empty ($_GET['h']))
 /* Operations may take a long time.
  * Be sure PHP's safe mode is off.
  */
-set_time_limit(0);
+@set_time_limit(0);
+/* Remove errors. */
+@error_reporting(0);
 
 $link_name = $_GET['h'];
 
@@ -220,8 +222,7 @@ header ('Content-Length: ' . $link['file_size']);
 if (!jirafeau_is_viewable ($link['mime_type']) || !$cfg['preview'] || $button_download)
     header ('Content-Disposition: attachment; filename="' .
         $link['file_name'] . '"');
-else
-    header ('Content-Type: ' . $link['mime_type']);
+header ('Content-Type: ' . $link['mime_type']);
 
 /* Read encrypted file. */
 if ($link['crypted'])

patrick-canterino.de