X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=mod%2Fattach.php;h=03f850f0d1749972d7e68e63de295007bf856cb5;hb=6e7f7210a8a3b0bb2d99f4bb7d83f764310332c9;hp=76d60a6907167bcfc28d03276adb773c0e216140;hpb=8b643d4c88ff9da3d4bdacfc7223abeee1f1827d;p=friendica.git diff --git a/mod/attach.php b/mod/attach.php index 76d60a6907..03f850f0d1 100644 --- a/mod/attach.php +++ b/mod/attach.php @@ -37,7 +37,12 @@ function attach_init(&$a) { // Use quotes around the filename to prevent a "multiple Content-Disposition" // error in Chrome for filenames with commas in them header('Content-type: ' . $r[0]['filetype']); - header('Content-disposition: attachment; filename="' . $r[0]['filename'] . '"'); + header('Content-length: ' . $r[0]['filesize']); + if(isset($_GET['attachment']) && $_GET['attachment'] === '0') + header('Content-disposition: filename="' . $r[0]['filename'] . '"'); + else + header('Content-disposition: attachment; filename="' . $r[0]['filename'] . '"'); + echo $r[0]['data']; killme(); // NOTREACHED