From fbc1fdd0b7244d2f03164b62eb893223ff930319 Mon Sep 17 00:00:00 2001 From: ewinslow Date: Sat, 12 Feb 2011 01:07:33 +0000 Subject: Converted most forms to use elgg_view_form (therefore also moved the views to forms/*). Some views are left that _only_ do elgg_view_form, so I wonder if those should even be kept around. git-svn-id: http://code.elgg.org/elgg/trunk@8127 36083f99-b078-4883-b0ff-0f9b5a30f544 --- mod/file/views/default/forms/file/upload.php | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) (limited to 'mod/file/views/default/forms/file/upload.php') 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) {

$categories

"; } @@ -52,7 +53,12 @@ if ($categories) { '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)); } -- cgit v1.2.3