aboutsummaryrefslogtreecommitdiff
path: root/mod/file/upload.php
blob: 51da6be3ab3bc48ccc5a74ec75540851c5aba257 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<?php
	/**
	 * Elgg file browser uploader
	 * 
	 * @package ElggFile
	 * @author Marcus Povey
	 * @copyright Curverider Ltd 2008
	 * @link http://elgg.com/
	 */

	gatekeeper();

	// Render the file upload page
	page_draw(elgg_echo("file:upload"), elgg_view("file/upload", NULL));
?>