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.php12
1 files changed, 7 insertions, 5 deletions
diff --git a/views/default/forms/widgets/save.php b/views/default/forms/widgets/save.php
index b8d6017f5..6959b2a82 100644
--- a/views/default/forms/widgets/save.php
+++ b/views/default/forms/widgets/save.php
@@ -14,8 +14,8 @@ $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;