diff options
author | Cash Costello <cash.costello@gmail.com> | 2012-07-01 21:43:26 -0400 |
---|---|---|
committer | Cash Costello <cash.costello@gmail.com> | 2012-07-01 21:43:26 -0400 |
commit | c593ca648683688fe89ab6f7ebc39e1c8471af18 (patch) | |
tree | 5133d390e7fb1de3f6039ed5efa68f524f46d189 | |
parent | c1621c3c385f366f553198fcc1d501b55405baed (diff) | |
download | elgg-c593ca648683688fe89ab6f7ebc39e1c8471af18.tar.gz elgg-c593ca648683688fe89ab6f7ebc39e1c8471af18.tar.bz2 |
Refs #3955 use input/dropdown for group membership since it is not technically an access and cause issues with removing public access
-rw-r--r-- | mod/groups/views/default/forms/groups/edit.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mod/groups/views/default/forms/groups/edit.php b/mod/groups/views/default/forms/groups/edit.php index 26436ef01..8055b6430 100644 --- a/mod/groups/views/default/forms/groups/edit.php +++ b/mod/groups/views/default/forms/groups/edit.php @@ -55,7 +55,7 @@ if ($group_profile_fields > 0) { <div> <label> <?php echo elgg_echo('groups:membership'); ?><br /> - <?php echo elgg_view('input/access', array( + <?php echo elgg_view('input/dropdown', array( 'name' => 'membership', 'value' => $membership, 'options_values' => array( |