diff options
| author | Horus3 | 2014-04-02 18:19:15 +0200 |
|---|---|---|
| committer | Horus3 | 2014-04-02 18:19:15 +0200 |
| commit | f4e1c90897d3d9a2f139fc604401694df273edc7 (patch) | |
| tree | 9136cb612682fdbd46b81e18ce740b3c25d0b40b /www/functions/func_download.php | |
| parent | 68b22caf30f9be7451c3f1473827e65737b1c1f7 (diff) | |
| download | files.iamfabulous.de-f4e1c90897d3d9a2f139fc604401694df273edc7.tar.gz | |
Displays images directly in the browser.
Diffstat (limited to 'www/functions/func_download.php')
| -rw-r--r-- | www/functions/func_download.php | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/www/functions/func_download.php b/www/functions/func_download.php index 64c5d90..d9be089 100644 --- a/www/functions/func_download.php +++ b/www/functions/func_download.php @@ -103,7 +103,10 @@ function download_file($db, $file_id){ //TODO: buffer output, print if reading == true header("Content-Type: ".$file_mime); - header("Content-Disposition: attachment; filename=\"".$file_name."\""); + + if(!preg_match("/^image\/.+/", $file_mime)){ + header("Content-Disposition: attachment; filename=\"".$file_name."\""); + } header("Content-Length: ".$file_size); set_time_limit(0); $uncompressed_file = readgzfile($gzip_file); |
