aboutsummaryrefslogtreecommitdiff
path: root/engine/lib/entities.php
diff options
context:
space:
mode:
authorcash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544>2011-03-20 20:50:00 +0000
committercash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544>2011-03-20 20:50:00 +0000
commit21f41d24e2fad631499ab80950e4d9a1e22bcca0 (patch)
treefd4897bf93bae387c5b30a84829468b3659e687b /engine/lib/entities.php
parent07125786f7d6fbe1b394141a2cdd983af7092f12 (diff)
downloadelgg-21f41d24e2fad631499ab80950e4d9a1e22bcca0.tar.gz
elgg-21f41d24e2fad631499ab80950e4d9a1e22bcca0.tar.bz2
Fixes #3114 added the rss link back to pages
git-svn-id: http://code.elgg.org/elgg/trunk@8784 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'engine/lib/entities.php')
-rw-r--r--engine/lib/entities.php6
1 files changed, 6 insertions, 0 deletions
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,