aboutsummaryrefslogtreecommitdiff
path: root/mod/file/actions
diff options
context:
space:
mode:
authoricewing <icewing@36083f99-b078-4883-b0ff-0f9b5a30f544>2008-05-01 15:17:50 +0000
committericewing <icewing@36083f99-b078-4883-b0ff-0f9b5a30f544>2008-05-01 15:17:50 +0000
commit872c762193858adfcf7a7621f3d86d2f30a346fb (patch)
tree6000444e4e4a19ef3c8f5eda2817d6a74ebbd08e /mod/file/actions
parentf6933c12066b0c4acc0475e2c4b30c14490f10f8 (diff)
downloadelgg-872c762193858adfcf7a7621f3d86d2f30a346fb.tar.gz
elgg-872c762193858adfcf7a7621f3d86d2f30a346fb.tar.bz2
Marcus Povey <marcus@dushka.co.uk>
* Download page added git-svn-id: https://code.elgg.org/elgg/trunk@604 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'mod/file/actions')
-rw-r--r--mod/file/actions/download.php16
1 files changed, 16 insertions, 0 deletions
diff --git a/mod/file/actions/download.php b/mod/file/actions/download.php
new file mode 100644
index 000000000..4ea08ae84
--- /dev/null
+++ b/mod/file/actions/download.php
@@ -0,0 +1,16 @@
+<?php
+ /**
+ * Elgg file browser download action.
+ *
+ * @package ElggFile
+ * @author Marcus Povey
+ * @copyright Curverider Ltd 2008
+ * @link http://elgg.com/
+ */
+
+
+ $file_guid = get_input("file_guid");
+
+
+ echo "$file_guid";
+?> \ No newline at end of file