diff options
author | ben <ben@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2009-02-23 16:56:33 +0000 |
---|---|---|
committer | ben <ben@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2009-02-23 16:56:33 +0000 |
commit | bfd49157afbdcb8ecc8e204ff7ab2b246d08be57 (patch) | |
tree | 4aa38bfe70a4054f9f2fe5645b2d18e9fc7f7c94 /mod/groups/topicposts.php | |
parent | 9d230309a4a8494ec7c409fd045def5ab918c378 (diff) | |
download | elgg-bfd49157afbdcb8ecc8e204ff7ab2b246d08be57.tar.gz elgg-bfd49157afbdcb8ecc8e204ff7ab2b246d08be57.tar.bz2 |
RSS for group topics, including fixes for annotation getURL() override
git-svn-id: https://code.elgg.org/elgg/trunk@2898 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'mod/groups/topicposts.php')
-rw-r--r-- | mod/groups/topicposts.php | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/mod/groups/topicposts.php b/mod/groups/topicposts.php index 7a2efaa70..ea8a82bac 100644 --- a/mod/groups/topicposts.php +++ b/mod/groups/topicposts.php @@ -13,6 +13,10 @@ // Load Elgg engine
require_once(dirname(dirname(dirname(__FILE__))) . "/engine/start.php");
+ // We now have RSS on topics
+ global $autofeed;
+ $autofeed = true;
+
//get_input('group_guid');
set_page_owner(get_input('group_guid'));
if (!(page_owner_entity() instanceof ElggGroup)) forward();
|