diff options
author | Cash Costello <cash.costello@gmail.com> | 2011-11-04 07:01:21 -0400 |
---|---|---|
committer | Cash Costello <cash.costello@gmail.com> | 2011-11-04 07:01:21 -0400 |
commit | 7787debf3e536497952256df147ea84e520390e3 (patch) | |
tree | 83418d09f54ecd3101f796e1efc721a3021934c9 /mod/groups/views/rss/groups/profile/layout.php | |
parent | 5d480f2d8a767c682878071c3c8f7f6b45770c14 (diff) | |
download | elgg-7787debf3e536497952256df147ea84e520390e3.tar.gz elgg-7787debf3e536497952256df147ea84e520390e3.tar.bz2 |
Fixes #4027 updated groups RSS feeds for 1.8
Diffstat (limited to 'mod/groups/views/rss/groups/profile/layout.php')
-rw-r--r-- | mod/groups/views/rss/groups/profile/layout.php | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/mod/groups/views/rss/groups/profile/layout.php b/mod/groups/views/rss/groups/profile/layout.php new file mode 100644 index 000000000..3eeb9eaf2 --- /dev/null +++ b/mod/groups/views/rss/groups/profile/layout.php @@ -0,0 +1,13 @@ +<?php +/** + * Group profile RSS view + * + * Displays a list of the latest content in the group + * + * @uses $vars['entity'] ElggGroup object + */ + +echo elgg_list_entities(array( + 'type' => 'object', + 'container_guid' => $vars['entity']->getGUID(), +)); |