diff options
author | Kevin Jardine <kevinjardine@yahoo.com> | 2012-05-09 19:09:24 +0200 |
---|---|---|
committer | Kevin Jardine <kevinjardine@yahoo.com> | 2012-05-09 19:09:24 +0200 |
commit | cea13ac10598078a6489650bf69c6efc45231e03 (patch) | |
tree | 25af2cf7bab261963301df88f6c479af5b371f6b /views/default/event_calendar/groupprofile_calendar.php | |
parent | 7f1d64ed5f005e701af71023798346193a445401 (diff) | |
download | elgg-cea13ac10598078a6489650bf69c6efc45231e03.tar.gz elgg-cea13ac10598078a6489650bf69c6efc45231e03.tar.bz2 |
fixes for group event bugs
Diffstat (limited to 'views/default/event_calendar/groupprofile_calendar.php')
-rw-r--r-- | views/default/event_calendar/groupprofile_calendar.php | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/views/default/event_calendar/groupprofile_calendar.php b/views/default/event_calendar/groupprofile_calendar.php index 7ee09104f..c71780be8 100644 --- a/views/default/event_calendar/groupprofile_calendar.php +++ b/views/default/event_calendar/groupprofile_calendar.php @@ -26,10 +26,8 @@ if (event_calendar_activated_for_group($page_owner_entity)) { if (is_array($events) && sizeof($events) > 0) { foreach($events as $event) { - echo elgg_view("object/event_calendar",array('entity' => $event)); + echo elgg_view("object/event_calendar",array('entity' => $event['event'])); } } } - -?>
\ No newline at end of file |