diff options
Diffstat (limited to 'views/default')
-rw-r--r-- | views/default/page/elements/comments_block.php | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/views/default/page/elements/comments_block.php b/views/default/page/elements/comments_block.php index 5571dc707..751aa4312 100644 --- a/views/default/page/elements/comments_block.php +++ b/views/default/page/elements/comments_block.php @@ -2,7 +2,7 @@ /** * Display the latest related comments * - * Generally used in a sidebar + * Generally used in a sidebar. Does not work with groups currently. * * @uses $vars['subtypes'] Object subtype string or array of subtypes * @uses $vars['owner_guid'] The owner of the content being commented on @@ -14,6 +14,12 @@ if (!$owner_guid) { $owner_guid = ELGG_ENTITIES_ANY_VALUE; } +$owner_entity = get_entity($owner_guid); +if ($owner_entity && elgg_instanceof($owner_entity, 'group')) { + // not supporting groups so return + return true; +} + $options = array( 'annotation_name' => 'generic_comment', 'owner_guid' => $owner_guid, |