aboutsummaryrefslogtreecommitdiff
path: root/views/default/forms/widgets
diff options
context:
space:
mode:
Diffstat (limited to 'views/default/forms/widgets')
-rw-r--r--views/default/forms/widgets/save.php14
1 files changed, 8 insertions, 6 deletions
diff --git a/views/default/forms/widgets/save.php b/views/default/forms/widgets/save.php
index c044e245f..6959b2a82 100644
--- a/views/default/forms/widgets/save.php
+++ b/views/default/forms/widgets/save.php
@@ -7,15 +7,15 @@
*/
$widget = $vars['widget'];
-$show_access = elgg_get_array_value('show_access', $vars, true);
+$show_access = elgg_extract('show_access', $vars, true);
$edit_view = "widgets/$widget->handler/edit";
$custom_form_section = elgg_view($edit_view, array('entity' => $widget));
$access = '';
if ($show_access) {
- $access = elgg_view('input/access', array(
- 'internalname' => 'params[access_id]',
+ $access = elgg_echo('access') . ': ' . elgg_view('input/access', array(
+ 'name' => 'params[access_id]',
'value' => $widget->access_id,
));
}
@@ -24,16 +24,18 @@ if (!$custom_form_section && !$access) {
return true;
}
-$hidden = elgg_view('input/hidden', array('internalname' => 'guid', 'value' => $widget->guid));
+$hidden = elgg_view('input/hidden', array('name' => 'guid', 'value' => $widget->guid));
$submit = elgg_view('input/submit', array('value' => elgg_echo('save')));
$body = <<<___END
$custom_form_section
- $access
<div>
+ $access
+ </div>
+ <div class="elgg-foot">
$hidden
$submit
</div>
___END;
-echo $body; \ No newline at end of file
+echo $body;