aboutsummaryrefslogtreecommitdiff
path: root/engine
diff options
context:
space:
mode:
authorben <ben@36083f99-b078-4883-b0ff-0f9b5a30f544>2008-04-30 16:15:35 +0000
committerben <ben@36083f99-b078-4883-b0ff-0f9b5a30f544>2008-04-30 16:15:35 +0000
commit778ddb88bb91e836b1ccf17edc74fabce5d2b8aa (patch)
treea75bd62cfd08b237f48e8828295f0e52a580f16c /engine
parent03848a78b520ffd72a6312e111861b2912508a56 (diff)
downloadelgg-778ddb88bb91e836b1ccf17edc74fabce5d2b8aa.tar.gz
elgg-778ddb88bb91e836b1ccf17edc74fabce5d2b8aa.tar.bz2
Slight correction to the count entities from relationship alias in ElggEntity
git-svn-id: https://code.elgg.org/elgg/trunk@587 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'engine')
-rw-r--r--engine/lib/entities.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/engine/lib/entities.php b/engine/lib/entities.php
index 087a33e1c..c62eb8ea7 100644
--- a/engine/lib/entities.php
+++ b/engine/lib/entities.php
@@ -271,7 +271,7 @@
* @return int|false The number of entities or false on failure
*/
function countEntitiesFromRelationship($relationship) {
- return get_entities_from_relationship($relationship,$this->getGUID(),false,"","","","time_created desc",$limit,$offset,true);
+ return get_entities_from_relationship($relationship,$this->getGUID(),false,"","","","time_created desc",null,null,true);
}
/**