summaryrefslogtreecommitdiff
path: root/modules/html5_uploader/controllers
diff options
context:
space:
mode:
authorTristan Zur <tzur@webserver.ccwn.org>2015-06-20 23:57:17 +0200
committerTristan Zur <tzur@webserver.ccwn.org>2015-06-20 23:57:17 +0200
commitca69b6502b5d4a3082d6deb1477f46614c866cba (patch)
tree437bea4a6b6e62495b67b0ab6266d1f53df3148a /modules/html5_uploader/controllers
parent18a1d682ff18ee69d5c252b013a6a6935cd9b5fe (diff)
In progress display added to upload
Diffstat (limited to 'modules/html5_uploader/controllers')
-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) {