aboutsummaryrefslogtreecommitdiff
path: root/engine/lib/entities.php
diff options
context:
space:
mode:
authorCash Costello <cash.costello@gmail.com>2012-01-20 20:59:34 -0500
committerCash Costello <cash.costello@gmail.com>2012-01-20 20:59:34 -0500
commit1b15e9f33013cc5407ff7620989a3bb027348c41 (patch)
tree02fb3d58d6ad7d6293e52d002b966f0a08f9822e /engine/lib/entities.php
parentb8d9fd50683965259f1836b959c74dc96f10a525 (diff)
downloadelgg-1b15e9f33013cc5407ff7620989a3bb027348c41.tar.gz
elgg-1b15e9f33013cc5407ff7620989a3bb027348c41.tar.bz2
Fixes #4303 passing arguments to elgg_view_entity_list in options array
Diffstat (limited to 'engine/lib/entities.php')
-rw-r--r--engine/lib/entities.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/engine/lib/entities.php b/engine/lib/entities.php
index 82452fba1..f3bf9fb29 100644
--- a/engine/lib/entities.php
+++ b/engine/lib/entities.php
@@ -2162,8 +2162,8 @@ function elgg_list_registered_entities(array $options = array()) {
$entities = array();
}
- return elgg_view_entity_list($entities, $count, $options['offset'],
- $options['limit'], $options['full_view'], $options['list_type_toggle'], $options['pagination']);
+ $options['count'] = $count;
+ return elgg_view_entity_list($entities, $options);
}
/**