From: Brett Profitt Date: Fri, 21 Oct 2011 00:42:33 +0000 (-0700) Subject: Fixes #3951. Added label for access dropdown in widget edit view. X-Git-Url: https://gitweb.fluxo.info/?a=commitdiff_plain;h=eefa65c05811dd348cec8f586acead1f2e492370;p=lorea%2Felgg.git Fixes #3951. Added label for access dropdown in widget edit view. --- diff --git a/views/default/forms/widgets/save.php b/views/default/forms/widgets/save.php index 4ba911cb5..6959b2a82 100644 --- a/views/default/forms/widgets/save.php +++ b/views/default/forms/widgets/save.php @@ -14,7 +14,7 @@ $custom_form_section = elgg_view($edit_view, array('entity' => $widget)); $access = ''; if ($show_access) { - $access = elgg_view('input/access', array( + $access = elgg_echo('access') . ': ' . elgg_view('input/access', array( 'name' => 'params[access_id]', 'value' => $widget->access_id, )); @@ -38,4 +38,4 @@ $body = <<<___END ___END; -echo $body; \ No newline at end of file +echo $body;