summaryrefslogtreecommitdiff
path: root/modules/html5_uploader/controllers/uploader.php
diff options
context:
space:
mode:
Diffstat (limited to 'modules/html5_uploader/controllers/uploader.php')
-rw-r--r--modules/html5_uploader/controllers/uploader.php4
1 files changed, 3 insertions, 1 deletions
diff --git a/modules/html5_uploader/controllers/uploader.php b/modules/html5_uploader/controllers/uploader.php
index fb00288..b06f84e 100644
--- a/modules/html5_uploader/controllers/uploader.php
+++ b/modules/html5_uploader/controllers/uploader.php
@@ -26,7 +26,9 @@ class Uploader_Controller extends Controller {
$album = $album->parent();
}
- print $this->_get_add_form($album);
+ $view = new View("upload_form.html");
+ $view->form = $this->_get_add_form($album);
+ print $view;
}
public function add($id) {