From 21f41d24e2fad631499ab80950e4d9a1e22bcca0 Mon Sep 17 00:00:00 2001 From: cash Date: Sun, 20 Mar 2011 20:50:00 +0000 Subject: Fixes #3114 added the rss link back to pages git-svn-id: http://code.elgg.org/elgg/trunk@8784 36083f99-b078-4883-b0ff-0f9b5a30f544 --- engine/lib/entities.php | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'engine/lib/entities.php') diff --git a/engine/lib/entities.php b/engine/lib/entities.php index 7f07f7359..a800817d7 100644 --- a/engine/lib/entities.php +++ b/engine/lib/entities.php @@ -1199,6 +1199,9 @@ $time_created_lower = NULL, $time_updated_upper = NULL, $time_updated_lower = NU function elgg_list_entities(array $options = array(), $getter = 'elgg_get_entities', $viewer = 'elgg_view_entity_list') { + global $autofeed; + $autofeed = true; + $defaults = array( 'offset' => (int) max(get_input('offset', 0), 0), 'limit' => (int) max(get_input('limit', 10), 0), @@ -2067,6 +2070,9 @@ function entities_page_handler($page) { * @since 1.7.0 */ function elgg_list_registered_entities(array $options = array()) { + global $autofeed; + $autofeed = true; + $defaults = array( 'full_view' => TRUE, 'allowed_types' => TRUE, -- cgit v1.2.3