From cc6b7d1d223241e397e0d41354924e74606eeffc Mon Sep 17 00:00:00 2001 From: brettp Date: Sat, 12 Feb 2011 22:39:46 +0000 Subject: Refs #650. Replaced calls to get_annotations() by elgg_get_annotations(). git-svn-id: http://code.elgg.org/elgg/trunk@8182 36083f99-b078-4883-b0ff-0f9b5a30f544 --- views/default/core/river/controls.php | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) (limited to 'views/default/core/river/controls.php') diff --git a/views/default/core/river/controls.php b/views/default/core/river/controls.php index 7c5e94581..dd9de656d 100644 --- a/views/default/core/river/controls.php +++ b/views/default/core/river/controls.php @@ -1,7 +1,7 @@ "elgg-toggler-{$object->getGUID()}", ); echo elgg_view('output/url', $params); - + // like this if (!elgg_annotation_exists($object->getGUID(), 'likes')) { $url = "action/likes/add?guid={$object->getGUID()}"; @@ -29,7 +29,12 @@ if (elgg_is_logged_in()) { ); echo elgg_view('output/url', $params); } else { - $likes = get_annotations($guid, '', '', 'likes', '', elgg_get_logged_in_user_guid()); + $options = array( + 'guid' => $guid, + 'annotation_name' => 'likes', + 'owner_guid' => get_logged_in_user_guid() + ); + $likes = elgg_get_annotations($options); $url = elgg_get_site_url() . "action/likes/delete?annotation_id={$likes[0]->id}"; $params = array( 'href' => $url, -- cgit v1.2.3