aboutsummaryrefslogtreecommitdiff
path: root/actions/download.php
diff options
context:
space:
mode:
Diffstat (limited to 'actions/download.php')
-rw-r--r--actions/download.php35
1 files changed, 0 insertions, 35 deletions
diff --git a/actions/download.php b/actions/download.php
deleted file mode 100644
index 3b39c831d..000000000
--- a/actions/download.php
+++ /dev/null
@@ -1,35 +0,0 @@
-<?php
- /**
- * Tidypics Download File Action
- *
- */
-
- global $CONFIG;
-
- $file_guid = (int) get_input("file_guid");
- $file = get_entity($file_guid);
-
- if ($file) {
- $filename = $file->originalfilename;
- $mime = $file->mimetype;
-
- header("Content-type: $mime");
- header("Content-Disposition: attachment; filename=\"$filename\"");
-
-
- $readfile = new ElggFile($file_guid);
- $readfile->owner_guid = $file->owner_guid;
-
- $contents = $readfile->grabFile();
-
- if (empty($contents))
- echo file_get_contents(dirname(dirname(__FILE__)) . "/graphics/image_error_large.png" );
- else
- echo $contents;
-
- exit;
- }
- else
- register_error(elgg_echo("image:downloadfailed"));
-
-?> \ No newline at end of file