diff options
author | ben <ben@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2008-04-30 16:15:35 +0000 |
---|---|---|
committer | ben <ben@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2008-04-30 16:15:35 +0000 |
commit | 778ddb88bb91e836b1ccf17edc74fabce5d2b8aa (patch) | |
tree | a75bd62cfd08b237f48e8828295f0e52a580f16c /engine/lib | |
parent | 03848a78b520ffd72a6312e111861b2912508a56 (diff) | |
download | elgg-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/lib')
-rw-r--r-- | engine/lib/entities.php | 2 |
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);
}
/**
|