aboutsummaryrefslogtreecommitdiff
path: root/views/default/event_calendar/forms/add_to_group.php
diff options
context:
space:
mode:
Diffstat (limited to 'views/default/event_calendar/forms/add_to_group.php')
-rw-r--r--views/default/event_calendar/forms/add_to_group.php8
1 files changed, 3 insertions, 5 deletions
diff --git a/views/default/event_calendar/forms/add_to_group.php b/views/default/event_calendar/forms/add_to_group.php
index 330f72526..2c8fdec53 100644
--- a/views/default/event_calendar/forms/add_to_group.php
+++ b/views/default/event_calendar/forms/add_to_group.php
@@ -56,21 +56,19 @@ if ($remove_group) {
if ($add_options || $remove_options) {
echo '<div class="contentWrapper" >';
- $event_bit = elgg_view('input/hidden', array("internalname" => "event_id","value" => $event_id));
+ $event_bit = elgg_view('input/hidden', array("name" => "event_id","value" => $event_id));
if ($add_options) {
echo "<h4>".elgg_echo('event_calendar:add_to_group:add_group_title')."</h4>";
- $add_pulldown = elgg_view("input/dropdown",array("internalname" => "group_id","options_values" => $add_options));
+ $add_pulldown = elgg_view("input/dropdown",array("name" => "group_id","options_values" => $add_options));
$submit_button = "<p>".elgg_view("input/submit",array("value"=>elgg_echo('event_calendar:add_to_group:add_group_button')))."</p>";
echo elgg_view ('input/form',array("body" => $event_bit.$add_pulldown.$submit_button,"action" => $vars['url']."action/event_calendar/add_to_group"));
}
if ($remove_options) {
echo "<h4>".elgg_echo('event_calendar:add_to_group:remove_group_title')."</h4>";
- $remove_pulldown = elgg_view("input/dropdown",array("internalname" => "group_id","options_values" => $remove_options));
+ $remove_pulldown = elgg_view("input/dropdown",array("name" => "group_id","options_values" => $remove_options));
$submit_button = "<p>".elgg_view("input/submit",array("value"=>elgg_echo('event_calendar:add_to_group:remove_group_button')))."</p>";
echo elgg_view ('input/form',array("body" => $event_bit.$remove_pulldown.$submit_button,"action" => $vars['url']."action/event_calendar/remove_from_group"));
}
echo '</div>';
}
-
-?> \ No newline at end of file