X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=mod%2Fattach.php;h=6155a3f99e9853c723acd623c64a375367eeb9b0;hb=db04a78d844f5fc528bf7ffb2c2c04767ab64b5f;hp=80a2222bc9892410b8f2d7c152019857777cfbb0;hpb=0cd241bcbe762e38e2eba0c58800eb60a2240e36;p=friendica.git diff --git a/mod/attach.php b/mod/attach.php index 80a2222bc9..6155a3f99e 100644 --- a/mod/attach.php +++ b/mod/attach.php @@ -1,10 +1,12 @@ argc != 2) { + if($a->argc != 2) { notice( t('Item not available.') . EOL); return; } @@ -38,7 +40,7 @@ function attach_init(App $a) { // error in Chrome for filenames with commas in them header('Content-type: ' . $r[0]['filetype']); header('Content-length: ' . $r[0]['filesize']); - if (isset($_GET['attachment']) && $_GET['attachment'] === '0') + if(isset($_GET['attachment']) && $_GET['attachment'] === '0') header('Content-disposition: filename="' . $r[0]['filename'] . '"'); else header('Content-disposition: attachment; filename="' . $r[0]['filename'] . '"');