aboutsummaryrefslogtreecommitdiff
path: root/mod/file/views/default/forms/file/upload.php
diff options
context:
space:
mode:
Diffstat (limited to 'mod/file/views/default/forms/file/upload.php')
-rw-r--r--mod/file/views/default/forms/file/upload.php10
1 files changed, 8 insertions, 2 deletions
diff --git a/mod/file/views/default/forms/file/upload.php b/mod/file/views/default/forms/file/upload.php
index f3012ea7a..2ab1ce3e5 100644
--- a/mod/file/views/default/forms/file/upload.php
+++ b/mod/file/views/default/forms/file/upload.php
@@ -12,6 +12,7 @@ $tags = elgg_get_array_value('tags', $vars, '');
$access_id = elgg_get_array_value('access_id', $vars, ACCESS_DEFAULT);
$container_guid = elgg_get_array_value('container_guid', $vars);
$guid = elgg_get_array_value('guid', $vars, null);
+$ajax = elgg_get_array_value('ajax', $vars, FALSE);
if ($guid) {
$file_label = elgg_echo("file:replace");
@@ -38,7 +39,7 @@ if ($guid) {
</p>
<?php
-$categories = elgg_view('categories', $vars);
+$categories = elgg_view('input/categories', $vars);
if ($categories) {
echo "<p>$categories</p>";
}
@@ -52,7 +53,12 @@ if ($categories) {
<?php
echo elgg_view('input/hidden', array('internalname' => 'container_guid', 'value' => $container_guid));
-
+
+//@todo this should not be necessary in 1.8... -- ajax actions can be auto-detected
+if ($ajax) {
+ echo elgg_view('input/hidden', array('internalname' => 'ajax', 'value' => 1));
+}
+
if ($guid) {
echo elgg_view('input/hidden', array('internalname' => 'file_guid', 'value' => $guid));
}