aboutsummaryrefslogtreecommitdiff
path: root/mod/file/download.php
diff options
context:
space:
mode:
authorcash <cash.costello@gmail.com>2011-11-05 15:43:50 -0400
committercash <cash.costello@gmail.com>2011-11-05 15:43:50 -0400
commit272ac7519214f1b75d4b71247438612af8c86643 (patch)
tree08286498ec81f5783b58f5042ccf033399647405 /mod/file/download.php
parent2d8d81df30e4a7ee65caf9469ba0cc486d494f29 (diff)
downloadelgg-272ac7519214f1b75d4b71247438612af8c86643.tar.gz
elgg-272ac7519214f1b75d4b71247438612af8c86643.tar.bz2
Fixes #4048 using page handler for file downloads
Diffstat (limited to 'mod/file/download.php')
-rw-r--r--mod/file/download.php29
1 files changed, 1 insertions, 28 deletions
diff --git a/mod/file/download.php b/mod/file/download.php
index 8e0287a1e..b2acdffec 100644
--- a/mod/file/download.php
+++ b/mod/file/download.php
@@ -9,31 +9,4 @@ require_once(dirname(dirname(dirname(__FILE__))) . "/engine/start.php");
// Get the guid
$file_guid = get_input("file_guid");
-// Get the file
-$file = get_entity($file_guid);
-if (!$file) {
- register_error(elgg_echo("file:downloadfailed"));
- forward();
-}
-
-$mime = $file->getMimeType();
-if (!$mime) {
- $mime = "application/octet-stream";
-}
-
-$filename = $file->originalfilename;
-
-// fix for IE https issue
-header("Pragma: public");
-
-header("Content-type: $mime");
-if (strpos($mime, "image/") !== false) {
- header("Content-Disposition: inline; filename=\"$filename\"");
-} else {
- header("Content-Disposition: attachment; filename=\"$filename\"");
-}
-
-ob_clean();
-flush();
-readfile($file->getFilenameOnFilestore());
-exit;
+forward("file/download/$file_guid");