blob: 419003b21108e17bd9b479615182cac543c4dd4e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
<?php
/**
* List replies RSS view
*
* @uses $vars['entity'] ElggEntity
*/
$options = array(
'guid' => $vars['entity']->getGUID(),
'annotation_name' => 'group_topic_post',
);
echo elgg_list_annotations($options);
|