diff options
Diffstat (limited to 'actions/download.php')
-rw-r--r-- | actions/download.php | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/actions/download.php b/actions/download.php index 3b39c831d..2736e5438 100644 --- a/actions/download.php +++ b/actions/download.php @@ -9,12 +9,17 @@ $file_guid = (int) get_input("file_guid");
$file = get_entity($file_guid);
+ $view = get_input("view");
+
if ($file) {
$filename = $file->originalfilename;
$mime = $file->mimetype;
header("Content-type: $mime");
- header("Content-Disposition: attachment; filename=\"$filename\"");
+ if ($view == "inline")
+ header("Content-Disposition: inline; filename=\"$filename\"");
+ else
+ header("Content-Disposition: attachment; filename=\"$filename\"");
$readfile = new ElggFile($file_guid);
|