diff options
author | Kevin Jardine <kevinjardine@yahoo.com> | 2012-09-07 11:29:38 +0200 |
---|---|---|
committer | Kevin Jardine <kevinjardine@yahoo.com> | 2012-09-07 11:29:38 +0200 |
commit | e2410ff02068bd012174ff31b143c11f65f0f485 (patch) | |
tree | 3401a03fe44703a7af789d263d2ae1f138cd1e34 /views/default | |
parent | 381e87e243e357d804f6113758ac00b69a0b436b (diff) | |
download | elgg-e2410ff02068bd012174ff31b143c11f65f0f485.tar.gz elgg-e2410ff02068bd012174ff31b143c11f65f0f485.tar.bz2 |
join now recreates conference if necessary
Diffstat (limited to 'views/default')
-rw-r--r-- | views/default/event_calendar/conference_button.php | 5 | ||||
-rw-r--r-- | views/default/forms/event_calendar/edit.php | 2 |
2 files changed, 4 insertions, 3 deletions
diff --git a/views/default/event_calendar/conference_button.php b/views/default/event_calendar/conference_button.php index baa30cc68..79fa9c5a2 100644 --- a/views/default/event_calendar/conference_button.php +++ b/views/default/event_calendar/conference_button.php @@ -2,7 +2,7 @@ // A non-admin / non-event-creator only sees the button if they have the event on his/her personal calendar // and it is at most 15 minutes before the conference starts. -// The button is removed for everyone (even admins) one day after the conference ends. +// The button is removed for everyone (even admins) one day after the event end time. $event = $vars['event']; @@ -21,10 +21,11 @@ if ($event) { } if ( $in_time_window ) { $button = elgg_view('output/url', array( - 'href' => event_calendar_get_join_bbb_url($event), + 'href' => 'action/event_calendar/join_conference?event_guid='.$event->guid, 'text' => elgg_echo('event_calendar:join_conf_button'), 'class' => 'elgg-button elgg-button-action', 'target' => '_blank', + 'is_action' => TRUE, )); echo '<div class="event-calendar-conf-join-button">'.$button.'</div>'; diff --git a/views/default/forms/event_calendar/edit.php b/views/default/forms/event_calendar/edit.php index 2ba744fc4..c2210c5f8 100644 --- a/views/default/forms/event_calendar/edit.php +++ b/views/default/forms/event_calendar/edit.php @@ -7,7 +7,7 @@ $schedule_options = array( elgg_echo('event_calendar:schedule_type:fixed')=>'fixed', ); -if (elgg_plugin_exists('event_poll')) { +if (elgg_is_active_plugin('event_poll')) { $schedule_options = array_merge(array(elgg_echo('event_calendar:schedule_type:poll')=>'poll'),$schedule_options); } |