aboutsummaryrefslogtreecommitdiff
path: root/mod/file/views/default
diff options
context:
space:
mode:
authorcash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544>2011-02-06 19:56:06 +0000
committercash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544>2011-02-06 19:56:06 +0000
commit1a792bebc590cdcfc1b888a33209df92be51400d (patch)
tree87e913b42593b74713a9280b7a7ea3ca4bb2f93e /mod/file/views/default
parentcfaa89dd2d32bc3c17d55def95a1fd49187e1667 (diff)
downloadelgg-1a792bebc590cdcfc1b888a33209df92be51400d.tar.gz
elgg-1a792bebc590cdcfc1b888a33209df92be51400d.tar.bz2
moved the count comments and likes functions into the ElggEntity class
git-svn-id: http://code.elgg.org/elgg/trunk@8047 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'mod/file/views/default')
-rw-r--r--mod/file/views/default/object/file.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/mod/file/views/default/object/file.php b/mod/file/views/default/object/file.php
index 89367feb3..5fcd2a023 100644
--- a/mod/file/views/default/object/file.php
+++ b/mod/file/views/default/object/file.php
@@ -37,7 +37,7 @@ $file_icon = elgg_view('file/icon', array(
$tags = elgg_view('output/tags', array('tags' => $file->tags));
$date = elgg_view_friendly_time($file->time_created);
-$comments_count = elgg_count_comments($file);
+$comments_count = $file->countComments();
//only display if there are commments
if ($comments_count != 0) {
$text = elgg_echo("comments") . " ($comments_count)";