aboutsummaryrefslogtreecommitdiff
path: root/actions
diff options
context:
space:
mode:
authorcash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544>2011-02-21 02:35:43 +0000
committercash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544>2011-02-21 02:35:43 +0000
commit0030fe2d63684b6612316b5162d34bfaa5dbfee1 (patch)
tree187a1d912d73addcbab72cf191b6f81ecc0778c8 /actions
parent25587657328ca8b492a497e385a2fc3887925848 (diff)
downloadelgg-0030fe2d63684b6612316b5162d34bfaa5dbfee1.tar.gz
elgg-0030fe2d63684b6612316b5162d34bfaa5dbfee1.tar.bz2
fixes #2885 #2569 likes controlled by canAnnotate() with plugin hook
git-svn-id: http://code.elgg.org/elgg/trunk@8382 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'actions')
-rw-r--r--actions/likes/add.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/actions/likes/add.php b/actions/likes/add.php
index a59ccae2b..12eed2427 100644
--- a/actions/likes/add.php
+++ b/actions/likes/add.php
@@ -21,8 +21,8 @@ if (!$entity) {
}
// cannot like your own stuff
-if (elgg_get_logged_in_user_guid() == $entity->getOwnerGUID()) {
- register_error(elgg_echo("likes:no_self_like"));
+if (!$entity->canAnnotate(0, 'likes')) {
+ // plugins should register the error message to explain why liking isn't allowed
forward(REFERER);
}