diff options
author | Sem <sembrestels@riseup.net> | 2012-08-30 04:01:58 +0200 |
---|---|---|
committer | Sem <sembrestels@riseup.net> | 2012-08-30 04:01:58 +0200 |
commit | 2374f4ca4b0b064118cd6cc33f8315a60715c3d4 (patch) | |
tree | a6a6abe4e214152a6cce5cd0055814b9a7301ec1 /views/default/event_calendar/share_section.php | |
parent | 471a4c609d72dd95c99b592ec40c624290e942d2 (diff) | |
download | elgg-2374f4ca4b0b064118cd6cc33f8315a60715c3d4.tar.gz elgg-2374f4ca4b0b064118cd6cc33f8315a60715c3d4.tar.bz2 |
Refactored edit form.
Diffstat (limited to 'views/default/event_calendar/share_section.php')
-rw-r--r-- | views/default/event_calendar/share_section.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/views/default/event_calendar/share_section.php b/views/default/event_calendar/share_section.php index 134f07656..c4f6cf45f 100644 --- a/views/default/event_calendar/share_section.php +++ b/views/default/event_calendar/share_section.php @@ -1,8 +1,8 @@ <?php $fd = $vars['form_data']; $event_calendar_hide_access = elgg_get_plugin_setting('hide_access', 'event_calendar'); -$body = '<div class="event-calendar-edit-form-block event-calendar-edit-form-share-block">'; -$body .= '<h2>'.elgg_echo('event_calendar:permissions:header').'</h2>'; +$body = '<fieldset>'; +$body .= '<legend>'.elgg_echo('event_calendar:permissions:header').'</legend>'; if($event_calendar_hide_access == 'yes') { $event_calendar_default_access = elgg_get_plugin_setting('default_access', 'event_calendar'); if($event_calendar_default_access) { @@ -21,6 +21,6 @@ if (elgg_plugin_exists('entity_admins')) { $body .= elgg_echo('event_calendar:share_ownership:description'); $body .= elgg_view('input/entity_admins_dropdown',array('entity'=>$vars['event'])); } -$body .= '</div>'; +$body .= '</fieldset>'; echo $body; |