aboutsummaryrefslogtreecommitdiff
path: root/views/default/core
diff options
context:
space:
mode:
Diffstat (limited to 'views/default/core')
-rw-r--r--views/default/core/likes/display.php2
-rw-r--r--views/default/core/river/controls.php2
2 files changed, 2 insertions, 2 deletions
diff --git a/views/default/core/likes/display.php b/views/default/core/likes/display.php
index a2f6b7799..d00294d2d 100644
--- a/views/default/core/likes/display.php
+++ b/views/default/core/likes/display.php
@@ -58,7 +58,7 @@ if ($num_of_likes) {
);
$list = elgg_view('output/url', $params);
$list .= "<div class='elgg-module elgg-module-popup elgg-likes-list hidden clearfix'>";
- $list .= list_annotations($guid, 'likes', 99);
+ $list .= elgg_list_annotations(array('guid' => $guid, 'annotation_name' => 'likes', 'limit' => 99));
$list .= "</div>";
}
diff --git a/views/default/core/river/controls.php b/views/default/core/river/controls.php
index dd9de656d..37bfba91b 100644
--- a/views/default/core/river/controls.php
+++ b/views/default/core/river/controls.php
@@ -32,7 +32,7 @@ if (elgg_is_logged_in()) {
$options = array(
'guid' => $guid,
'annotation_name' => 'likes',
- 'owner_guid' => get_logged_in_user_guid()
+ 'owner_guid' => elgg_get_logged_in_user_guid()
);
$likes = elgg_get_annotations($options);
$url = elgg_get_site_url() . "action/likes/delete?annotation_id={$likes[0]->id}";