comments.php 247 B

1234567891011121314
  1. <?php
  2. /**
  3. * RSS comments view
  4. *
  5. * @uses $vars['entity']
  6. */
  7. $options = array(
  8. 'guid' => $vars['entity']->getGUID(),
  9. 'annotation_name' => 'generic_comment',
  10. 'order_by' => 'n_table.time_created desc',
  11. );
  12. echo elgg_list_annotations($options);