diff options
author | brettp <brettp@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2011-02-12 23:29:36 +0000 |
---|---|---|
committer | brettp <brettp@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2011-02-12 23:29:36 +0000 |
commit | b8996ea6be1b51de7c1567905b6c1688a4e81495 (patch) | |
tree | d426e2d9d098bd8c30843fd163011f651c270da9 /views | |
parent | e1f6f69e639881496a10a1888b66976c1f581e98 (diff) | |
download | elgg-b8996ea6be1b51de7c1567905b6c1688a4e81495.tar.gz elgg-b8996ea6be1b51de7c1567905b6c1688a4e81495.tar.bz2 |
Refs #650. Replaced count_annotations().
git-svn-id: http://code.elgg.org/elgg/trunk@8188 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'views')
-rw-r--r-- | views/default/core/river/footer.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/views/default/core/river/footer.php b/views/default/core/river/footer.php index 04f7d8daa..ee9d5dc58 100644 --- a/views/default/core/river/footer.php +++ b/views/default/core/river/footer.php @@ -11,7 +11,7 @@ if ($item->annotation_id != 0 || !$object) { return true; } -$comment_count = count_annotations($object->getGUID(), '', '', 'generic_comment'); +$comment_count = $object->countComments(); $options = array( 'guid' => $object->getGUID(), |