diff options
author | Kevin Jardine <kevinjardine@yahoo.com> | 2012-07-22 14:05:50 +0200 |
---|---|---|
committer | Kevin Jardine <kevinjardine@yahoo.com> | 2012-07-22 14:05:50 +0200 |
commit | 819cebeb27c5ab8b4a04fc8660667ec9a29681c1 (patch) | |
tree | e981ef8d08d59cbbbbb882208f91bdee273cd00a /models/model.php | |
parent | dae9634f5d74824e3179942b0bc62dd52d850085 (diff) | |
download | elgg-819cebeb27c5ab8b4a04fc8660667ec9a29681c1.tar.gz elgg-819cebeb27c5ab8b4a04fc8660667ec9a29681c1.tar.bz2 |
manager subscribers link now appears on the lightbox version of an event (assuming that the add users plugin option is enabled)
Diffstat (limited to 'models/model.php')
-rw-r--r-- | models/model.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/models/model.php b/models/model.php index fb2cf44c2..85e605352 100644 --- a/models/model.php +++ b/models/model.php @@ -1879,7 +1879,7 @@ function event_calendar_get_page_content_view($event_guid,$light_box = FALSE) { } elgg_push_breadcrumb($event->title); - $content = elgg_view_entity($event, array('full_view' => true)); + $content = elgg_view_entity($event, array('full_view' => true,'light_box'=>$light_box)); //check to see if comment are on - TODO - add this feature to all events if ($event->comments_on != 'Off') { $content .= elgg_view_comments($event); |