diff options
author | cash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2011-02-06 19:56:06 +0000 |
---|---|---|
committer | cash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2011-02-06 19:56:06 +0000 |
commit | 1a792bebc590cdcfc1b888a33209df92be51400d (patch) | |
tree | 87e913b42593b74713a9280b7a7ea3ca4bb2f93e /mod/file | |
parent | cfaa89dd2d32bc3c17d55def95a1fd49187e1667 (diff) | |
download | elgg-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')
-rw-r--r-- | mod/file/views/default/object/file.php | 2 |
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)"; |