diff options
Diffstat (limited to 'actions/likes/add.php')
-rw-r--r-- | actions/likes/add.php | 4 |
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); } |